:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-soft-coral: #FFB5A7;
  --primary-sage-green: #A8D5BA;
  --primary-lavender: #C8A2C8;
  --primary-peach: #FFCBA4;
  --primary-sky-blue: #B8E0D2;
  
  /* Light Shades */
  --light-coral: #FFE4E1;
  --light-sage: #E8F5E8;
  --light-lavender: #F0E6F0;
  --light-peach: #FFF2E6;
  --light-sky: #E8F8F5;
  
  /* Dark Shades */
  --dark-coral: #E69A8A;
  --dark-sage: #8BC49C;
  --dark-lavender: #B085B0;
  --dark-peach: #E6B087;
  --dark-sky: #9BCBB5;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #212529;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-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);
  
  /* Transitions */
  --transition-smooth: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-soft-coral), var(--primary-peach));
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-light);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  color: var(--light-peach);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-sage), var(--light-sky));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-soft-coral), var(--primary-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

/* Section Styling */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-soft-coral);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--light-peach), var(--light-coral));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-soft-coral), var(--primary-lavender));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-soft-coral);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--medium-gray);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-sage-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.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 {
  background: linear-gradient(135deg, var(--light-lavender), var(--light-sky));
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  position: relative;
}

.priceplan-card:nth-child(2) {
  transform: scale(1.05);
  border: 3px solid var(--primary-soft-coral);
}

.priceplan-card:hover {
  transform: translateY(-10px);
}

.priceplan-card:nth-child(2):hover {
  transform: scale(1.05) translateY(-10px);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-soft-coral);
  margin: 1.5rem 0;
}

.priceplan-features {
  list-style: none;
  margin: 2rem 0;
}

.priceplan-features li {
  padding: 0.8rem 0;
  color: var(--medium-gray);
  border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
.team {
  background: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
  border: 4px solid var(--primary-sage-green);
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--light-coral), var(--light-peach));
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  margin: 0 1rem;
}

.review-text {
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--dark-gray);
}

/* Core Info Section */
.coreinfo {
  background: var(--white);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: linear-gradient(135deg, var(--light-sage), var(--light-sky));
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

/* Contact Form */
.contact {
  background: linear-gradient(135deg, var(--light-lavender), var(--light-coral));
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-soft-coral);
  box-shadow: 0 0 0 3px rgba(255, 181, 167, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-soft-coral), var(--primary-peach));
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Blog Section */
.blog {
  background: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-item a {
  color: var(--primary-soft-coral);
  text-decoration: none;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, var(--light-sky), var(--light-sage));
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  background: var(--primary-sage-green);
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--dark-sage);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--medium-gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--white);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
  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 h3 {
  color: var(--primary-soft-coral);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-soft-coral);
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding-top: 1rem;
  text-align: center;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-lavender);
  top: 10%;
  left: -5%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-sage-green);
  bottom: 20%;
  right: -3%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: var(--primary-peach);
  top: 50%;
  left: 5%;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--primary-soft-coral);
}

.swiper-pagination-bullet-active {
  background: var(--dark-coral);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-soft-coral);
} 