:root {
  /* Primary colors */
  --primary-1: #5d4a7e; /* Rich purple */
  --primary-2: #f0b67f; /* Warm apricot */
  --primary-3: #6da5c0; /* Soft teal */
  --primary-4: #e26d5a; /* Coral red */
  --primary-5: #22333b; /* Dark slate */
  
  /* Light/dark shades */
  --primary-1-light: #8a77a8;
  --primary-1-dark: #3f2f57;
  --primary-2-light: #f7d5b0;
  --primary-2-dark: #c6934f;
  --primary-3-light: #9bc7d9;
  --primary-3-dark: #4b7d97;
  --primary-4-light: #ec9a8c;
  --primary-4-dark: #b84e3c;
  --primary-5-light: #556970;
  --primary-5-dark: #0e1518;
  
  /* Font sizes */
  --fs-xl: 4rem;
  --fs-lg: 3rem;
  --fs-md: 2rem;
  --fs-sm: 1.5rem;
  --fs-xs: 1rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-5);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--primary-3);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-3-dark);
}

/* Button styles */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.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-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--primary-5-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

/* Header styles */
.header {
  padding: 1.5rem 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header .navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-1);
}

.header .nav-link {
  font-weight: 600;
  color: var(--primary-5);
  margin: 0 0.8rem;
  position: relative;
}

.header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.header .nav-link:hover::after {
  width: 100%;
}

/* Section styles */
section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: var(--fs-lg);
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.section-title p {
  color: var(--primary-5-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-5-light);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

/* Services Section */
.services-item {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-1);
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-1);
  font-size: 2.5rem;
}

.services-item h3 {
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
}

.services-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-3);
  margin: 1rem 0;
}

/* Features Section */
.features-item {
  text-align: center;
  margin-bottom: 2rem;
}

.features-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-1-light);
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* Price Plan Section */
.priceplan-item {
  background-color: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.priceplan-item:hover {
  border-color: var(--primary-1);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1.5rem 0;
}

.priceplan-features {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.priceplan-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-member {
  position: relative;
  margin-bottom: 2rem;
}

.team-image {
  border-radius: 15px;
  overflow: hidden;
}

.team-image img {
  transition: all 0.3s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  background-color: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: -50px;
  position: relative;
  z-index: 1;
  margin-left: 20px;
  margin-right: 20px;
}

.team-info h4 {
  font-size: var(--fs-sm);
  margin-bottom: 0.5rem;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--primary-5-light);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-item {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
}

.reviews-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--primary-5);
}

.reviews-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.coreinfo-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--primary-2-light);
  opacity: 0.1;
  border-radius: 0 0 0 100px;
}

/* Contact Form Section */
.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: none;
  background-color: #f8f9fa;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
}

.form-control:focus {
  box-shadow: none;
  background-color: #eee;
}

/* Blog Section */
.blog-item {
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-content h3 {
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--primary-5-light);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-accordion .accordion-item {
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background-color: white;
  box-shadow: none;
  padding: 1.5rem;
  font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: white;
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-5-dark);
  color: white;
  padding: 5rem 0 2rem;
}

footer h5 {
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--primary-2);
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
} 