:root {
  --primary-1: #5a8c8c; /* Teal */
  --primary-2: #d98c76; /* Coral */
  --primary-3: #f2cd88; /* Cream */
  --primary-4: #8f7e93; /* Lavender */
  --primary-5: #f2ece4; /* Off-white */
  --dark-1: #3a5c5c;
  --dark-2: #a96a56;
  --dark-3: #d2ad68;
  --dark-4: #6f5e73;
  --dark-5: #d2ccc4;
  --light-1: #7aacac;
  --light-2: #f9ac96;
  --light-3: #fff0d8;
  --light-4: #af9eb3;
  --light-5: #fffaf4;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: var(--light-5);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-1);
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--dark-4);
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 600;
  color: #333;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-1);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-desc-1 {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-feature {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--light-5);
  height: 100%;
  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-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-1);
  position: relative;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.service-features {
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-4);
}

.price-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1.5rem 0;
}

.price-features {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.price-features li {
  margin-bottom: 0.75rem;
}

/* Team Section */
.team-section {
  background-color: #fff;
  position: relative;
}

.team-card {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  background-color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-2);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-3);
  position: relative;
}

.review-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1.5rem;
}

.review-text::before,
.review-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--light-2);
  position: absolute;
  line-height: 1;
}

.review-text::before {
  top: -1rem;
  left: -1rem;
}

.review-text::after {
  bottom: -2rem;
  right: -1rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--light-5);
  height: 100%;
  transition: all 0.3s ease;
}

.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-4);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-5);
}

.contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-submit {
  background-color: var(--primary-1);
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--dark-1);
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-excerpt {
  color: #777;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--dark-1);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-5);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background-color: #fff;
  color: var(--dark-1);
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-1);
  color: #fff;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-1);
  color: #fff;
  padding: 4rem 0 2rem;
}

footer h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255,255,255,0.8);
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

#site-copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: block;
}

/* Additional pages */
.page-header {
  background-color: var(--primary-1);
  color: #fff;
  padding: 5rem 0;
  position: relative;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
} 