:root {
  /* Color Palette - Pastel Medical Theme */
  --primary-color-1: #8ecae6; /* Soft Blue */
  --primary-color-2: #c8e7d4; /* Mint Green */
  --primary-color-3: #f9d9ca; /* Peach */
  --primary-color-4: #e9d8f4; /* Lavender */
  --primary-color-5: #ffebcc; /* Light Yellow */
  
  /* Shade Variants */
  --primary-color-1-light: #b5ddf2;
  --primary-color-1-dark: #5ea8cc;
  --primary-color-2-light: #e4f3eb;
  --primary-color-2-dark: #9ccfb3;
  --primary-color-3-light: #fceae1;
  --primary-color-3-dark: #f0b599;
  --primary-color-4-light: #f4ecfa;
  --primary-color-4-dark: #d1b7e5;
  --primary-color-5-light: #fff5e6;
  --primary-color-5-dark: #ffd699;
  
  /* Text Colors */
  --text-dark: #334155;
  --text-medium: #64748b;
  --text-light: #94a3b8;
  
  /* Background Colors */
  --bg-light: #f8fafc;
  --bg-medium: #f1f5f9;
  --bg-dark: #e2e8f0;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-1-dark);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1);
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout & Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--primary-color-1);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 20px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color-1);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--primary-color-1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color-1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color-1);
}

.btn-outline:hover {
  background-color: var(--primary-color-1);
  color: white;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-color-1-dark);
}

.navbar-nav {
  display: flex;
  list-style: none;
  flex-direction: row;
}

.nav-item {
  margin-left: 25px;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color-1);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3-light);
  overflow: hidden;
}

.hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(142, 202, 230, 0.3), rgba(233, 216, 244, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--text-medium);
}

.hero-description {
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Swiper Hero */
.hero-swiper {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 600px;
}

/* About Section */
.about {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.about-feature {
  position: relative;
  padding-left: 70px;
}

.about-feature-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-1-dark);
  border-radius: 50%;
  font-size: 20px;
}

.about-feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Services Section */
.services {
  background-color: var(--bg-medium);
  position: relative;
}

.service-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFFFFF"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23FFFFFF"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FFFFFF"></path></svg>');
  background-size: 100% 100px;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color-3-light);
  color: var(--primary-color-3-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 30px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 15px;
  display: block;
}

.service-features {
  margin: 20px 0;
}

.service-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-feature i {
  color: var(--primary-color-2-dark);
  margin-right: 10px;
}

/* Features Section */
.features {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  display: flex;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background-color: var(--primary-color-2-light);
  color: var(--primary-color-2-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 30px;
  margin-right: 20px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--bg-medium);
  position: relative;
}

.price-plans {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 350px;
  position: relative;
  overflow: hidden;
}

.price-card.popular {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 2px solid var(--primary-color-1);
}

.price-card.popular:before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--primary-color-1);
  color: white;
  padding: 5px 40px;
  font-size: 14px;
  font-weight: 600;
  transform: rotate(45deg);
}

.price-header {
  text-align: center;
  margin-bottom: 30px;
}

.price-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 10px;
}

.price-period {
  font-size: 14px;
  color: var(--text-light);
}

.price-features {
  margin-bottom: 30px;
}

.price-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.price-feature i {
  color: var(--primary-color-2-dark);
  margin-right: 10px;
}

.price-footer {
  text-align: center;
}

/* Team Section */
.team {
  background-color: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  font-size: 14px;
  color: var(--text-light);
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-1-light);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
  padding: 30px 0;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 20px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before, .review-text:after {
  content: '"';
  font-size: 30px;
  color: var(--primary-color-1);
  position: absolute;
}

.review-text:before {
  top: -10px;
  left: -10px;
}

.review-text:after {
  bottom: -20px;
  right: -10px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 600;
  font-size: 18px;
}

/* Core Info Section */
.core-info {
  background-color: var(--bg-light);
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-info-card {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.core-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color-4-light);
  color: var(--primary-color-4-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
}

.core-info-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: var(--bg-medium);
  position: relative;
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-form {
  flex: 2;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-info {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--bg-dark);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-color-1-light);
}

.form-check {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-1-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 15px;
}

.contact-info-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Blog Section */
.blog {
  background-color: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  min-height: 50px;
}

.blog-excerpt {
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 70px;
}

.blog-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-heading {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color-1);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 15px;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: var(--primary-color-1);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  margin-right: 10px;
  color: var(--primary-color-1);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
}

/* Additional Pages */
.add-page-section {
  padding: 80px 0;
}

.add-page-section:nth-child(odd) {
  background-color: var(--bg-light);
}

.add-page-section:nth-child(even) {
  background-color: var(--bg-medium);
}

.add-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.add-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.add-page-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
}

.add-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} 