:root {
  /* Primary Colors */
  --primary-1: #ff9e7a; /* Warm Peach */
  --primary-2: #85c7b0; /* Soft Mint */
  --primary-3: #ffd166; /* Gentle Yellow */
  --primary-4: #8fb8de; /* Baby Blue */
  --primary-5: #b096c7; /* Lavender */
  
  /* Shades */
  --primary-1-light: #ffc5b0;
  --primary-1-dark: #e87d59;
  
  --primary-2-light: #afdecb;
  --primary-2-dark: #65a792;
  
  --primary-3-light: #ffe2a3;
  --primary-3-dark: #d9b043;
  
  --primary-4-light: #b5d3ee;
  --primary-4-dark: #6e9cc7;
  
  --primary-5-light: #d1b9e0;
  --primary-5-dark: #9478ac;
  
  /* Neutrals */
  --dark: #2d3142;
  --gray: #9ba0b3;
  --light-gray: #f0f2f5;
  --white: #ffffff;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-outline-primary {
  color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-outline-primary:hover {
  background-color: var(--primary-1);
  color: white;
}

.section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  color: var(--gray);
}

/* Header Styles */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-2-light);
}

.hero-content {
  z-index: 1;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-feature {
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-2);
}

/* Services Section */
.services {
  background-color: var(--light-gray);
  position: relative;
}

.service-item {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-item-image {
  height: 200px;
  overflow: hidden;
}

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item-content {
  padding: 1.5rem;
}

.service-item-price {
  font-weight: 700;
  color: var(--primary-3);
  font-size: 1.25rem;
}

.service-item-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.service-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
}

.service-item-features li:last-child {
  border-bottom: none;
}

.service-item-features i {
  color: var(--primary-2);
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-4);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--light-gray);
}

.price-item {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 2rem;
}

.price-item.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-3);
}

.price-item:hover {
  transform: translateY(-10px);
}

.price-item-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

.price-item-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.price-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
.team {
  position: relative;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-5);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-gray);
}

.review-item {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
}

/* Core Info Section */
.coreinfo {
  position: relative;
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-5);
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

/* Blog Section */
.blog {
  background-color: var(--light-gray);
}

.blog-item {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-item-image {
  height: 200px;
  overflow: hidden;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq {
  position: relative;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1-light);
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--white);
}

/* Gallery Section */
.gallery {
  position: relative;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

footer a {
  color: var(--light-gray);
}

footer a:hover {
  color: var(--primary-1-light);
}

#site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  background-color: var(--primary-2-light);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  opacity: 0.5;
  top: -150px;
  right: -100px;
}

.shape-2 {
  background-color: var(--primary-3-light);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  opacity: 0.5;
  bottom: -100px;
  left: -50px;
}

.shape-3 {
  background-color: var(--primary-5-light);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  opacity: 0.5;
  top: 50%;
  left: -75px;
} 