:root {
  /* Color Palette */
  --primary-1: #694b8e; /* Purple */
  --primary-2: #a89bc9; /* Lavender */
  --primary-3: #e0c3fc; /* Light Lavender */
  --primary-4: #f5d5c4; /* Peach */
  --primary-5: #2b3044; /* Dark Navy */
  
  /* Shades */
  --primary-1-light: #8463a9;
  --primary-1-dark: #503a6b;
  --primary-2-light: #c2b8d9;
  --primary-2-dark: #8a7eb8;
  --primary-3-light: #ecdafd;
  --primary-3-dark: #caacee;
  --primary-4-light: #f9e7de;
  --primary-4-dark: #ebba9e;
  --primary-5-light: #3b4159;
  --primary-5-dark: #1c202f;

  /* Text Colors */
  --text-dark: #222;
  --text-light: #f5f5f5;
  --text-muted: #6c757d;
  
  /* Base Sizes */
  --base-font-size: 16px;
  --heading-1: 3.5rem;
  --heading-2: 2.8rem;
  --heading-3: 2.2rem;
  --heading-4: 1.8rem;
  --heading-5: 1.4rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--heading-1);
}

h2 {
  font-size: var(--heading-2);
}

h3 {
  font-size: var(--heading-3);
}

p {
  margin-bottom: var(--spacing-sm);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  display: inline-block;
  background: var(--primary-1);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
}

.btn:hover {
  background: var(--primary-1-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

.btn-outline:hover {
  background: var(--primary-1);
  color: white;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* Custom shape elements */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-circle {
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  background: var(--primary-3-light);
  opacity: 0.7;
}

.shape-blob {
  width: 20vw;
  height: 20vw;
  background: var(--primary-2-light);
  border-radius: 60% 40% 50% 30% / 40% 50% 30% 60%;
  opacity: 0.6;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-5-light), var(--primary-5));
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  font-size: 3.5rem;
}

.hero-subtitle {
  color: var(--primary-3);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.hero-desc {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-shape-1 {
  top: -5%;
  right: 10%;
}

.hero-shape-2 {
  bottom: 10%;
  left: 5%;
}

/* About Section */
.about {
  position: relative;
  background-color: white;
}

.about-shape {
  top: -10%;
  right: -5%;
}

.about-feature {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  background: white;
  box-shadow: var(--shadow-sm);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: var(--spacing-sm);
}

/* Services Section */
.services {
  background-color: var(--primary-5-light);
  position: relative;
  overflow: hidden;
}

.services-title, .services-subtitle {
  color: var(--text-light);
}

.services-desc {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.service-card {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-body {
  padding: var(--spacing-md);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-price {
  display: inline-block;
  background: var(--primary-1);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  margin-top: var(--spacing-xs);
}

.service-features {
  list-style: none;
  margin-top: var(--spacing-sm);
}

.service-features li {
  margin-bottom: 0.5rem;
  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;
  color: var(--primary-1);
}

/* Features Section */
.features {
  background-color: white;
  position: relative;
}

.feature-card {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  background: white;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: var(--spacing-sm);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--primary-3-light);
  position: relative;
}

.price-card {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.price-card-header {
  background: var(--primary-1);
  color: white;
  padding: var(--spacing-md);
  text-align: center;
}

.price-card-body {
  padding: var(--spacing-md);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: var(--spacing-md) 0;
}

.price-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.price-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-1);
}

/* Team Section */
.team {
  background-color: white;
  position: relative;
}

.team-member {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--spacing-sm);
  border: 5px solid var(--primary-3-light);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-5-light);
  color: var(--text-light);
  position: relative;
}

.reviews-title, .reviews-subtitle {
  color: var(--text-light);
}

.reviews-desc {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.review-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  box-shadow: var(--shadow-md);
}

.review-card:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary-3-light);
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0.2;
}

.review-text {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.review-author {
  color: var(--primary-1);
  font-weight: 700;
  text-align: right;
}

/* Core Info Section */
.coreinfo {
  background-color: white;
  position: relative;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: var(--spacing-sm);
}

/* Contact Form Section */
.contact {
  background-color: var(--primary-3-light);
  position: relative;
}

.contact-form {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(105, 75, 142, 0.2);
}

.form-check {
  margin-top: var(--spacing-md);
}

.services-select {
  padding: var(--spacing-sm);
  margin-top: var(--spacing-xs);
}

/* Blog Section */
.blog {
  background-color: white;
  position: relative;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
  margin-bottom: var(--spacing-sm);
}

.blog-link {
  color: var(--primary-1);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background-color: var(--primary-3-light);
  position: relative;
}

.accordion-item {
  margin-bottom: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: var(--spacing-md);
  background: white;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  position: relative;
}

.accordion-header:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: var(--spacing-md);
  transition: var(--transition-normal);
}

.accordion-header[aria-expanded="true"]:after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
}

/* Gallery Section */
.gallery {
  background-color: white;
  position: relative;
}

.gallery-item {
  position: relative;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-5);
  color: var(--text-light);
  padding: var(--spacing-lg) 0;
}

footer p {
  margin-bottom: var(--spacing-xs);
}

footer small {
  opacity: 0.7;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-3);
}

/* Additional Pages */
.page-header {
  background: var(--primary-5);
  color: var(--text-light);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-title {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: 0;
}

.add-page-section {
  padding: var(--spacing-xl) 0;
}

/* Media Queries */
@media (max-width: 992px) {
  :root {
    --heading-1: 3rem;
    --heading-2: 2.4rem;
    --heading-3: 2rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  :root {
    --heading-1: 2.5rem;
    --heading-2: 2.2rem;
    --heading-3: 1.8rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: auto;
    padding: 5rem 0;
  }
}

@media (max-width: 576px) {
  :root {
    --heading-1: 2.2rem;
    --heading-2: 1.8rem;
    --heading-3: 1.5rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 