:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-sage: #a8c09a;
  --primary-lavender: #c8a8d8;
  --primary-peach: #f4c2a1;
  --primary-cream: #f7f3e9;
  --primary-dusty-rose: #d4a5a5;
  
  /* Light Shades */
  --light-sage: #d1e0c7;
  --light-lavender: #e4d1ed;
  --light-peach: #f9dcc8;
  --light-cream: #faf8f2;
  --light-dusty-rose: #e8c7c7;
  
  /* Dark Shades */
  --dark-sage: #7a9070;
  --dark-lavender: #9c7aac;
  --dark-peach: #e09b73;
  --dark-cream: #e8ddc7;
  --dark-dusty-rose: #b88080;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #2c2c2c;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #495057;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
  
  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 15px;
  --radius-large: 25px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-cream), var(--light-sage));
  padding: 1rem 0;
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  background: transparent !important;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-sage) !important;
}

.navbar-nav .nav-link {
  color: var(--gray-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-peach) 50%, var(--light-lavender) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-sage);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--dark-sage);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-dusty-rose);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-dusty-rose);
  margin-bottom: 1.5rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--gray-dark);
}

/* About Section */
.about-section {
  background: linear-gradient(45deg, var(--light-cream), var(--white));
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about-feature h4 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--light-sage), var(--light-lavender));
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-lavender);
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.4rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  color: var(--primary-dusty-rose);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--primary-sage);
  font-weight: 500;
}

/* Features Section */
.features-section {
  background: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-peach);
  margin-bottom: 1.5rem;
}

.feature-name {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(45deg, var(--light-peach), var(--light-cream));
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-sage), var(--primary-lavender));
}

.price-name {
  font-size: 1.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  color: var(--primary-dusty-rose);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  background: var(--light-cream);
}

.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-sage);
  box-shadow: var(--shadow-medium);
}

.team-name {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-dusty-rose);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--light-lavender), var(--light-dusty-rose));
}

.review-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-lavender);
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.3;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.review-author {
  color: var(--primary-sage);
  font-weight: 600;
  text-align: right;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.coreinfo-item {
  background: linear-gradient(45deg, var(--light-sage), var(--light-peach));
  padding: 2rem;
  border-radius: var(--radius-medium);
  margin-bottom: 2rem;
  text-align: center;
}

.coreinfo-title {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--light-cream), var(--light-sage));
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
  max-width: 600px;
  margin: 0 auto;
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: var(--radius-small);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(168, 192, 154, 0.25);
}

.btn-submit {
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-lavender));
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-small);
  font-weight: 600;
  transition: transform 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Blog Section */
.blog-section {
  background: var(--light-peach);
}

.blog-item {
  background: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  background: var(--light-cream);
  border-radius: var(--radius-small);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-sage);
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  margin: 0;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-sage);
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  color: var(--gray-dark);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(45deg, var(--light-lavender), var(--light-dusty-rose));
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-sage), var(--dark-lavender));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--light-cream);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--light-sage);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--primary-sage);
  padding-top: 1rem;
  text-align: center;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-sage);
  top: 10%;
  right: -150px;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-lavender);
  bottom: 20%;
  left: -100px;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-cream);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* Swiper Customization */
.swiper {
  padding-bottom: 3rem;
}

.swiper-pagination-bullet {
  background: var(--primary-sage);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-dusty-rose);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
} 