:root {
  /* Primary color palette */
  --primary-1: #8b4c70; /* Muted purple */
  --primary-2: #d86a77; /* Soft coral */
  --primary-3: #f6c9a0; /* Light peach */
  --primary-4: #eaeef4; /* Pale blue-gray */
  --primary-5: #41596c; /* Deep slate */
  
  /* Shades */
  --primary-1-light: #a67191;
  --primary-1-dark: #6d3857;
  --primary-2-light: #e48d98;
  --primary-2-dark: #bf4e5b;
  --primary-3-light: #f9dbc0;
  --primary-3-dark: #e3b080;
  --primary-4-light: #f5f7fa;
  --primary-4-dark: #d0d7e2;
  --primary-5-light: #5a758e;
  --primary-5-dark: #304150;
  
  /* Font sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-5);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-2);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  color: var(--primary-2);
  font-weight: 500;
}

.section-description {
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--font-size-sm);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

.btn-outline:hover {
  background-color: var(--primary-1);
  color: white;
}

/* Header Styles */
.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--primary-5);
}

.nav-link {
  color: var(--primary-5);
  font-weight: 600;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-4-light);
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  color: var(--primary-5);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-lg);
  color: var(--primary-2);
}

.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
}

.hero-image {
  position: relative;
  z-index: 4;
}

.hero-shape {
  position: absolute;
  z-index: 1;
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.4;
}

.shape-2 {
  bottom: -50px;
  left: -100px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-2-light);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.3;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-feature {
  padding: var(--spacing-md);
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1);
}

.about-feature-name {
  font-weight: 600;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
}

/* Services Section */
.services-section {
  background-color: var(--primary-4-light);
  position: relative;
}

.service-item {
  padding: var(--spacing-lg);
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: var(--spacing-lg);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-2);
}

.service-name {
  font-weight: 600;
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xs);
}

.service-price {
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--primary-1);
  margin-bottom: var(--spacing-sm);
}

.service-features {
  margin-top: var(--spacing-sm);
}

.service-features li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-2);
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  padding: var(--spacing-md);
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: var(--spacing-md);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1);
}

.feature-name {
  font-weight: 600;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-4-light);
  position: relative;
}

.price-item {
  padding: var(--spacing-lg);
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--primary-2);
}

.price-name {
  font-weight: 700;
  font-size: var(--font-size-xl);
  margin: var(--spacing-md) 0;
}

.price-value {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: var(--spacing-md);
}

.price-features {
  margin: var(--spacing-md) 0;
  text-align: left;
}

.price-features li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-2);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-member img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
}

.team-member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member-name {
  font-weight: 600;
  font-size: var(--font-size-lg);
  margin-bottom: 5px;
}

.team-member-role {
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-4-light);
  position: relative;
}

.review-item {
  padding: var(--spacing-lg);
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding: 0 20px;
}

.review-text:before, .review-text:after {
  content: '\201C';
  font-size: 50px;
  position: absolute;
  color: var(--primary-3-light);
  line-height: 1;
}

.review-text:before {
  top: -10px;
  left: -15px;
}

.review-text:after {
  content: '\201D';
  right: -15px;
  bottom: -30px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
  margin-top: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  padding: var(--spacing-md);
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: flex-start;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2rem;
  margin-right: var(--spacing-sm);
  color: var(--primary-2);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-3-light);
  border-radius: 50%;
}

.coreinfo-content {
  flex-grow: 1;
}

.coreinfo-title {
  font-weight: 600;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-4-light);
  position: relative;
}

.contact-form {
  padding: var(--spacing-lg);
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.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);
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-item {
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  overflow: hidden;
  height: 220px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: var(--spacing-md);
  background-color: white;
}

.blog-title {
  font-weight: 600;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
}

.blog-excerpt {
  font-size: var(--font-size-sm);
  color: #666;
  margin-bottom: var(--spacing-sm);
}

.blog-link {
  color: var(--primary-1);
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.accordion-item {
  margin-bottom: var(--spacing-sm);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  background-color: white;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--primary-4-light);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238b4c70'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-item {
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-1);
  font-size: 20px;
  transform: scale(0);
  transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Footer */
.footer {
  background-color: var(--primary-5);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.footer p, .footer ul {
  margin-bottom: var(--spacing-sm);
}

.footer a {
  color: var(--primary-3-light);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.site-copyright {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
} 