:root {
  --primary-1: #e6f2ff; /* Light blue */
  --primary-2: #ffecd9; /* Soft peach */
  --primary-3: #f0e6ff; /* Soft lavender */
  --primary-4: #d9f2e6; /* Mint green */
  --primary-5: #ffe6e6; /* Light pink */
  
  --dark-1: #3a5a80;
  --dark-2: #c78440;
  --dark-3: #6b4da3;
  --dark-4: #2e7d56;
  --dark-5: #ba5a5a;
  
  --light-1: #f5faff;
  --light-2: #fff9f2;
  --light-3: #f8f5ff;
  --light-4: #f2fbf6;
  --light-5: #fff2f2;
  
  --text-dark: #2c3e50;
  --text-medium: #526980;
  --text-light: #95a5a6;
  --white: #ffffff;
  --black: #111111;
  --gray-light: #f8f9fa;
  --gray-medium: #e9ecef;
  --gray-dark: #ced4da;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--dark-1);
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
  position: relative;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--dark-1);
  color: var(--white);
  border: 2px solid var(--dark-1);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--dark-1);
}

.btn-secondary {
  background-color: var(--dark-3);
  color: var(--white);
  border: 2px solid var(--dark-3);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--dark-3);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-1);
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--dark-3);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--dark-3);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-3);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  padding: 2rem;
}

.about-image {
  flex: 1;
  padding: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--light-3);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--dark-3);
  margin-bottom: 1rem;
}

.about-feature-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-1);
  position: relative;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.2rem;
  color: var(--dark-3);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-features {
  margin-top: 1rem;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-medium);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--primary-2);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--dark-2);
  margin-bottom: 1.5rem;
}

.feature-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--white);
}

.priceplan-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price-item {
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  background-color: var(--light-1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  background-color: var(--primary-4);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-name {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-4);
  margin-bottom: 2rem;
}

.price-features {
  margin-bottom: 2rem;
}

.price-features ul {
  list-style: none;
}

.price-features li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--gray-medium);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--light-3);
}

.team-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.team-member {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-medium);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-1);
}

.swiper-reviews {
  padding: 2rem 0;
}

.review-item {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-author {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--light-4);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--dark-4);
  margin-bottom: 1.5rem;
}

.coreinfo-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-2);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gray-medium);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--dark-2);
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gray-medium);
  border-radius: 0.5rem;
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

.contact-info {
  padding: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-info-icon {
  font-size: 1rem;
  color: var(--dark-2);
  margin-right: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-1);
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-item {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-date {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--dark-1);
  color: var(--white);
  padding: 5rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-about {
  grid-column: span 2;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-desc {
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-3);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-medium);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact h4 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-3);
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--primary-3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom small {
  opacity: 0.7;
} 