:root {
  /* Color Palette */
  --primary-color-1: #5E3B76; /* Purple - primary brand color */
  --primary-color-2: #F5B95F; /* Amber - accent color */
  --primary-color-3: #2D9B87; /* Teal - supporting color */
  --primary-color-4: #E86D6D; /* Coral - accent for highlights */
  --primary-color-5: #4A6B8A; /* Slate blue - neutral support */
  
  /* Shades */
  --primary-color-1-light: #7A5992;
  --primary-color-1-dark: #42295A;
  --primary-color-2-light: #F8CA80;
  --primary-color-2-dark: #D99D47;
  --primary-color-3-light: #3DB9A3;
  --primary-color-3-dark: #1F7A6A;
  --primary-color-4-light: #EE8A8A;
  --primary-color-4-dark: #D05050;
  --primary-color-5-light: #6482A0;
  --primary-color-5-dark: #365472;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

p {
  line-height: 1.6;
}

.section-padding {
  padding: 100px 0;
}

/* Buttons */
.custom-btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: var(--primary-color-1-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
}

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-2);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(94,59,118,0.9) 0%, rgba(45,155,135,0.8) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-shape {
  position: absolute;
  opacity: 0.2;
}

.hero-shape-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: var(--primary-color-2);
}

.hero-shape-2 {
  bottom: 5%;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background-color: var(--primary-color-4);
}

/* About Section */
.about-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.about-feature {
  padding: 25px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  background-color: rgba(94,59,118,0.1);
  color: var(--primary-color-1);
  font-size: 28px;
}

/* Services Section */
.services-section {
  position: relative;
}

.service-item {
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color-2) 0%, var(--primary-color-3) 100%);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(94,59,118,0.1);
  color: var(--primary-color-1);
  font-size: 32px;
  margin-bottom: 25px;
}

.service-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color-2);
  color: var(--primary-color-1-dark);
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
  font-weight: bold;
}

/* Features Section */
.features-section {
  background-color: #f9f9f9;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
  font-size: 40px;
  background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-3) 100%);
  color: white;
}

/* Price Plan Section */
.price-plan-section {
  position: relative;
}

.price-card {
  padding: 40px 30px;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-color-1-light) 0%, var(--primary-color-1) 100%);
  color: white;
}

.price-tag {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
  color: var(--primary-color-1);
}

.price-card.featured .price-tag {
  color: var(--primary-color-2);
}

.price-features {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

.price-card.featured .price-features li:before {
  color: var(--primary-color-2);
}

/* Team Section */
.team-section {
  background-color: #f9f9f9;
}

.team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
  background-color: white;
}

.team-role {
  color: var(--primary-color-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.review-item {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 20px 10px;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: '"';
  font-size: 80px;
  position: absolute;
  top: -20px;
  left: -15px;
  color: rgba(94,59,118,0.1);
  font-family: serif;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-color-1);
  color: white;
  position: relative;
  overflow: hidden;
}

.coreinfo-shape {
  position: absolute;
  opacity: 0.1;
}

.coreinfo-shape-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: white;
}

.coreinfo-shape-2 {
  bottom: 5%;
  right: 10%;
  width: 150px;
  height: 150px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background-color: var(--primary-color-2);
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(5px);
}

.coreinfo-item:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color-2);
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  padding: 40px;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  padding: 15px 5px;
  margin-bottom: 25px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-3) 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Blog Section */
.blog-section {
  background-color: #f9f9f9;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color-1);
  font-weight: 500;
  position: relative;
}

.read-more:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.read-more:hover:after {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  position: relative;
  background-color: white;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 500;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: rgba(94,59,118,0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(94,59,118,0.1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235E3B76'%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 25px;
  line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  transition: all 0.5s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #222;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
  position: relative;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h5 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h5:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-2);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  font-size: 14px;
}

#site-copyright {
  opacity: 0.7;
} 