:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-sage: #a8c090;
  --primary-lavender: #b8a9d9;
  --primary-peach: #f4c2a1;
  --primary-mint: #9fd8cb;
  --primary-cream: #f7f3e3;
  
  /* Light Shades */
  --light-sage: #d4e4c1;
  --light-lavender: #e1dbf0;
  --light-peach: #f9dcc8;
  --light-mint: #c9e8df;
  --light-cream: #faf8f0;
  
  /* Dark Shades */
  --dark-sage: #7a9267;
  --dark-lavender: #9484b8;
  --dark-peach: #e09870;
  --dark-mint: #6fb3a0;
  --dark-cream: #e8dfc0;
  
  /* Neutral Colors */
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #e9ecef;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-cream), var(--light-mint));
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  background: transparent !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../LUX_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: var(--primary-mint);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-cream), var(--light-mint));
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--bg-light);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-sage), var(--primary-lavender));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-peach), var(--primary-mint));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image i {
  font-size: 2rem;
  color: white;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--light-lavender), var(--light-peach));
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--primary-lavender);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--bg-light);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 2rem;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  color: white;
  transform: scale(1.05);
}

.price-card.featured .price-amount {
  color: white;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-mint), var(--light-cream));
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary-cream);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-light);
}

.review-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin: 1rem;
  text-align: center;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.review-author {
  font-weight: 600;
  color: var(--primary-sage);
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--light-peach), var(--light-lavender));
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-peach);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 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, 144, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, var(--light-sage), var(--light-mint));
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.accordion-button {
  background: linear-gradient(135deg, var(--light-cream), var(--light-mint));
  border: none;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  color: white;
}

.accordion-body {
  background: white;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--light-lavender), var(--light-peach));
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  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(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-peach);
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50% 40% 60% 30%;
  opacity: 0.1;
  z-index: 1;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-sage);
  top: 10%;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-peach);
  bottom: 10%;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-pagination-bullet-active {
  background: var(--primary-lavender);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }

/* Additional Page Styles */
.add-page-section {
  padding: 60px 0;
  position: relative;
}

.add-page-section:nth-child(odd) {
  background: var(--bg-light);
}

.add-page-section:nth-child(even) {
  background: linear-gradient(135deg, var(--light-cream), var(--light-mint));
}

.add-page-element {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  text-align: center;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
} 