:root {
  --primary-color-1: #f8c9b9; /* Soft Peach */
  --primary-color-2: #a5d7c7; /* Mint Green */
  --primary-color-3: #f5e5b8; /* Pale Yellow */
  --primary-color-4: #d4bbdd; /* Lavender */
  --primary-color-5: #b7d3e9; /* Light Sky Blue */
  
  --dark-1: #4a4a4a;
  --dark-2: #333333;
  --light-1: #f9f9f9;
  --light-2: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-2);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: var(--dark-2);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color-1);
  color: var(--dark-2);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-color-3);
  transform: translateY(-3px);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--light-2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 600;
}

/* Hide mobile menu toggle by default (for desktop) */
.mobile-menu-toggle {
  display: none;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-color-2);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-1);
  border-radius: 50%;
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: var(--light-1);
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  background-color: var(--light-2);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Services Section */
.services-section {
  background-color: var(--light-2);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background-color: var(--light-1);
  border-radius: 10px;
  padding: 30px;
  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-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 15px 0;
}

.service-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
  background-color: var(--primary-color-5);
  position: relative;
  overflow: hidden;
}

.features-container {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  background-color: var(--light-2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-1);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.priceplan-item {
  background-color: var(--light-2);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.priceplan-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color-4);
  margin: 20px 0;
}

.priceplan-features {
  margin: 25px 0;
  text-align: left;
}

/* Team Section */
.team-section {
  background-color: var(--light-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-member-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-color-1);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-3);
  position: relative;
  overflow: hidden;
}

.reviews-container {
  position: relative;
}

.swiper-reviews {
  padding: 30px 10px 50px;
}

.review-item {
  background-color: var(--light-2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-1);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-item {
  background-color: var(--light-2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-2);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  padding: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background-color: var(--light-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-2);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--light-1);
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

.accordion-header.active:after {
  transform: rotate(45deg);
}

.accordion-body {
overflow-x: hidden;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-body.active {
  padding: 15px 20px;
  max-height: 200px;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-color-5);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-2);
  color: var(--light-1);
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-info {
  margin-bottom: 30px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light-2);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-1);
}

.footer-links a:hover {
  color: var(--primary-color-1);
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 100px 0 20px;
  background-color: var(--primary-color-3);
} 