:root {
  /* Primary Colors - Harmonious Pastels */
  --primary-purple: #8B7ECF;
  --primary-teal: #7DD3C0;
  --primary-coral: #F8A695;
  --primary-lavender: #B2A4E0;
  --primary-mint: #A8E6CF;
  
  /* Light Shades */
  --light-purple: #C8C1E8;
  --light-teal: #B8E8DA;
  --light-coral: #FBC4B7;
  --light-lavender: #D1C7ED;
  --light-mint: #D1F2E3;
  
  /* Dark Shades */
  --dark-purple: #6B5CAB;
  --dark-teal: #5BB29F;
  --dark-coral: #E6856F;
  --dark-lavender: #9887C7;
  --dark-mint: #7BC7A3;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
  --gradient-2: linear-gradient(135deg, var(--primary-coral), var(--primary-lavender));
  --gradient-3: linear-gradient(135deg, var(--primary-mint), var(--primary-purple));
  
  /* Typography */
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Header Styles */
header {
  background: var(--gradient-1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(139, 126, 207, 0.2);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-purple) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 166, 149, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-purple);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 126, 207, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-3);
  color: var(--white);
}

.service-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--light-mint);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--primary-mint);
  transform: scale(1.05);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--dark-purple);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 126, 207, 0.15);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-1);
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1.5rem 0;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-lavender);
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.1);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-teal);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-2);
  color: var(--white);
}

.review-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.review-stars {
  color: var(--primary-coral);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  margin-top: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--light-gray);
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(125, 211, 192, 0.1);
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-section {
  background: var(--white);
}

.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 126, 207, 0.1);
}

.form-control {
  border: 2px solid var(--light-purple);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 126, 207, 0.25);
}

.btn-submit {
  background: var(--gradient-1);
  border: none;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 126, 207, 0.3);
}

/* Blog Section */
.blog-section {
  background: var(--light-mint);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(168, 230, 207, 0.2);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.accordion-item {
  border: 1px solid var(--light-purple);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--light-lavender);
  color: var(--dark-purple);
  font-weight: 600;
  border: none;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-lavender);
  color: var(--white);
}

.accordion-body {
  background: var(--white);
  padding: 1.5rem;
  color: var(--gray);
}

/* Gallery Section */
.gallery-section {
  background: var(--light-gray);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-teal);
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-coral);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-purple);
  top: 10%;
  right: 10%;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  bottom: 10%;
  left: 5%;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }
.rounded { border-radius: 10px; }

/* Swiper Styles */
.swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.swiper-slide {
  text-align: center;
  background: transparent;
}

.swiper-pagination-bullet {
  background: var(--primary-purple);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-coral);
  opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Media Queries handled in responsive.css */ 