:root {
  --primary-color-1: #4e6e81; /* Deep teal blue */
  --primary-color-2: #f9bc60; /* Warm amber */
  --primary-color-3: #e16162; /* Soft coral */
  --primary-color-4: #9ac2c9; /* Light pastel blue */
  --primary-color-5: #76949f; /* Steel blue-gray */
  
  --light-shade-1: #f8f9fa;
  --light-shade-2: #e9ecef;
  --dark-shade-1: #343a40;
  --dark-shade-2: #212529;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-shade-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* Shape decorations */
.shape-decorator {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
}

.shape-1 {
  width: 150px;
  height: 150px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: var(--primary-color-2);
}

.shape-2 {
  width: 200px;
  height: 200px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background-color: var(--primary-color-4);
}

/* Header */
header {
  padding: 1rem 0;
  background-color: var(--light-shade-1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-shade-1);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-shade-2);
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  color: var(--primary-color-1);
  margin-bottom: 2rem;
}

.hero-desc-1 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  position: relative;
}

/* About Section */
.about-section {
  background-color: var(--light-shade-1);
}

.about-feature {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color-2);
}

/* Services Section */
.services-section {
  background-color: #fff;
}

.service-item {
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  background-color: var(--light-shade-1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-top: 1rem;
}

.service-features {
  margin-top: 1.5rem;
  list-style: none;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: var(--light-shade-2);
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color-4);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan-section {
  background-color: #fff;
}

.price-plan-item {
  padding: 3rem 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  background-color: var(--light-shade-1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  text-align: center;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 1.5rem 0;
}

.price-plan-features {
  margin: 1.5rem 0;
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.price-plan-features li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color-2);
}

/* Team Section */
.team-section {
  background-color: var(--light-shade-1);
}

.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-member-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
  border: 5px solid var(--light-shade-1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color-1);
}

/* Reviews Section */
.reviews-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.review-item {
  padding: 2rem;
  border-radius: 10px;
  margin: 1rem;
  background-color: var(--light-shade-1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Core Info Section */
.core-info-section {
  background-color: var(--light-shade-2);
}

.core-info-item {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-color-5);
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-section {
  background-color: #fff;
}

.contact-form {
  background-color: var(--light-shade-1);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
  margin-bottom: 1.5rem;
  border: 1px solid var(--light-shade-2);
  border-radius: 5px;
  padding: 0.75rem 1rem;
}

.contact-info {
  padding: 2rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-shade-1);
}

.blog-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background-color: #fff;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--light-shade-1);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--dark-shade-1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: #fff;
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--light-shade-1);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-shade-2);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 4rem 0 1rem;
  background-color: var(--dark-shade-1);
  color: #fff;
}

footer h4 {
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

footer p, footer ul {
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-color-2);
  text-decoration: none;
}

#site-copyright {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-shade-1);
  border-color: var(--dark-shade-1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Additional Page Styles */
.additional-page-section {
  padding: 5rem 0;
}

.space-section {
  min-height: 500px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}

/* Section headings styling */
.section-heading {
  margin-bottom: 4rem;
  text-align: center;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-heading h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-2);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
} 