:root {
  --primary-color-1: #6f4e7c; /* Deep purple */
  --primary-color-2: #a5678e; /* Rose pink */
  --primary-color-3: #f2b880; /* Peach */
  --primary-color-4: #cfd8dc; /* Light slate gray */
  --primary-color-5: #546e7a; /* Dark slate gray */

  --light-shade-1: #f8f9fa;
  --light-shade-2: #e9ecef;
  --dark-shade-1: #343a40;
  --dark-shade-2: #212529;
}

/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-shade-1);
  background-color: var(--light-shade-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  color: var(--primary-color-2);
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color-1);
}

.nav-link {
  color: var(--dark-shade-1);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-2);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(111, 78, 124, 0.85), rgba(165, 103, 142, 0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* About Section */
.about-section {
  background-color: var(--light-shade-2);
  position: relative;
}

.about-feature {
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
  position: relative;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  color: var(--primary-color-2);
  font-weight: 700;
  font-size: 1.2rem;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color-3);
}

/* Features Section */
.features-section {
  background-color: var(--light-shade-2);
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan-section {
  position: relative;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
  text-align: center;
  padding: 2rem 1rem;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-name {
  color: var(--primary-color-1);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-value {
  color: var(--primary-color-2);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.price-features li {
  padding: 5px 0;
}

/* Team Section */
.team-section {
  background-color: var(--light-shade-2);
  position: relative;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color-2);
}

/* Reviews Section */
.reviews-section {
  position: relative;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.core-info-section {
  background-color: var(--light-shade-2);
  position: relative;
}

.core-info-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.core-info-item:hover {
  transform: translateY(-10px);
}

.core-info-icon {
  font-size: 2rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 2rem;
}

.form-control {
  border: 1px solid var(--light-shade-2);
  padding: 0.8rem 1rem;
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
}

/* Blog Section */
.blog-section {
  background-color: var(--light-shade-2);
  position: relative;
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color-1);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color-2);
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--light-shade-2);
  color: var(--dark-shade-1);
  font-weight: 600;
  padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-shade-2);
  position: relative;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-shade-1);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-title {
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-3);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.copyright-bar {
  background-color: var(--dark-shade-2);
  padding: 1rem 0;
  margin-top: 3rem;
}

.site-copyright {
  color: var(--light-shade-2);
  margin-bottom: 0;
} 