:root {
  /* Color Palette - Harmonious Pastels */
  --primary-color-1: #E3B8A5; /* Soft Terracotta */
  --primary-color-2: #C6D5C0; /* Sage Green */
  --primary-color-3: #D8B3D8; /* Lavender */
  --primary-color-4: #F2D5B7; /* Warm Sand */
  --primary-color-5: #A5BDCA; /* Dusty Blue */
  
  /* Shades */
  --primary-color-1-light: #F0D5CA;
  --primary-color-1-dark: #C99881;
  --primary-color-2-light: #E1EAE0;
  --primary-color-2-dark: #9BAF94;
  --primary-color-3-light: #EBDAEB;
  --primary-color-3-dark: #B791B7;
  --primary-color-4-light: #F9E8D7;
  --primary-color-4-dark: #D9B58E;
  --primary-color-5-light: #CFD9E0;
  --primary-color-5-dark: #7A99AB;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  
  /* Background Colors */
  --bg-light: #FAFAFA;
  --bg-medium: #F0F0F0;
  --bg-dark: #E0E0E0;
  
  /* Accent Colors */
  --accent-success: #95B68E;
  --accent-warning: #F8D49C;
  --accent-danger: #E3A5A5;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-small: 0 2px 5px rgba(0,0,0,0.05);
  --shadow-medium: 0 5px 15px rgba(0,0,0,0.07);
  --shadow-large: 0 15px 35px rgba(0,0,0,0.1);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-5);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-color-5-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-medium);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-accent {
  background-color: var(--primary-color-3);
  color: white;
}

.btn-accent:hover {
  background-color: var(--primary-color-3-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Card Styles */
.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow-small);
  padding: 2rem;
  transition: var(--transition-medium);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-medium);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: var(--shadow-small);
  padding: 1rem 0;
  transition: var(--transition-fast);
}

.header.scrolled {
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-dark);
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

.nav-item {
  margin: 0 1rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* About Section */
.about {
  background-color: var(--bg-light);
}

.about-feature {
  margin-bottom: 2rem;
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: white;
}

.service-item {
  margin-bottom: 2rem;
}

.service-img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-color-3-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: bold;
}

/* Features Section */
.features {
  background-color: var(--bg-medium);
}

.feature-item {
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background-color: white;
}

.price-item {
  text-align: center;
  border: 1px solid var(--bg-medium);
  border-radius: 10px;
  padding: 2rem;
  transition: var(--transition-medium);
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color-1-light);
}

.price-name {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.price-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: bold;
}

/* Team Section */
.team {
  background-color: var(--bg-light);
}

.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid white;
  box-shadow: var(--shadow-small);
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-medium);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: white;
  overflow: hidden;
}

.review-item {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color-1-light);
  opacity: 0.5;
  line-height: 1;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.review-author-name {
  font-weight: 600;
}

/* Core Info Section */
.coreinfo {
  background-color: var(--bg-medium);
}

.coreinfo-item {
  margin-bottom: 2rem;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-4);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-small);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--bg-medium);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 3px var(--primary-color-1-light);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1rem;
  color: var(--primary-color-1);
  margin-right: 1rem;
}

/* Blog Section */
.blog {
  background-color: var(--bg-light);
}

.blog-item {
  margin-bottom: 2rem;
}

.blog-img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.blog-link {
  font-weight: 500;
  color: var(--primary-color-1);
}

.blog-link:hover {
  color: var(--primary-color-1-dark);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--primary-color-1);
  margin-right: 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  opacity: 0.7;
  font-size: 0.875rem;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Swiper Slider Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-color-1);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color-1);
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color-1);
}

.text-secondary {
  color: var(--primary-color-2);
}

.text-accent {
  color: var(--primary-color-3);
}

.bg-primary {
  background-color: var(--primary-color-1);
}

.bg-secondary {
  background-color: var(--primary-color-2);
}

.bg-accent {
  background-color: var(--primary-color-3);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
} 