:root {
  --primary-color-1: #c8b08f; /* Warm beige */
  --primary-color-2: #5c7a9c; /* Muted blue */
  --primary-color-3: #a8c3b9; /* Sage green */
  --primary-color-4: #e2c4bd; /* Dusty rose */
  --primary-color-5: #53565a; /* Charcoal */
  
  /* Light and dark variations */
  --primary-color-1-light: #e0d2bc;
  --primary-color-1-dark: #a08a67;
  --primary-color-2-light: #8ca3c0;
  --primary-color-2-dark: #3c5376;
  --primary-color-3-light: #cae0d8;
  --primary-color-3-dark: #7a9d8f;
  --primary-color-4-light: #f2dcd7;
  --primary-color-4-dark: #c4a29a;
  --primary-color-5-light: #87898d;
  --primary-color-5-dark: #343639;

  /* Font settings */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-color-5);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-5-dark);
}

a {
  color: var(--primary-color-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-outline-primary {
  border-color: var(--primary-color-1);
  color: var(--primary-color-1);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color-1);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-1);
}

.section-title p {
  color: var(--primary-color-5-light);
}

/* Header */
.navbar {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-5-dark);
}

.navbar-nav .nav-link {
  color: var(--primary-color-5);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3-light);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-section {
  background-color: #f9f9f9;
}

.about-feature {
  margin-bottom: 30px;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-features li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: #f9f9f9;
}

.feature-item {
  text-align: center;
  margin-bottom: 30px;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: white;
}

.price-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: #f9f9f9;
}

.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-member-info {
  padding: 20px;
  background-color: white;
}

.team-member-info h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-member-info p {
  color: var(--primary-color-5-light);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.review-item {
  padding: 30px;
  margin: 15px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: -20px;
  top: -20px;
  color: var(--primary-color-1-light);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-5);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #f9f9f9;
}

.coreinfo-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  padding: 30px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info i {
  font-size: 1.5rem;
  color: var(--primary-color-1);
  margin-right: 10px;
}

/* Blog Section */
.blog-section {
  background-color: #f9f9f9;
}

.blog-card {
  margin-bottom: 30px;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-5-dark);
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 5px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
overflow-x: hidden;
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: #f9f9f9;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-5-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

footer h5 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: var(--primary-color-1);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

#site-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Shapes */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  top: 5%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color-1-light);
  opacity: 0.5;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 15s linear infinite alternate;
}

.shape-2 {
  bottom: 5%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-3-light);
  opacity: 0.5;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 20s linear infinite alternate;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--primary-color-1-light);
  padding: 20px 0;
}

.breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-5);
} 