:root {
  /* Color palette variables */
  --primary-color-1: #FF8C69; /* Salmon */
  --primary-color-2: #65AFDC; /* Sky Blue */
  --primary-color-3: #A6C48A; /* Sage Green */
  --primary-color-4: #D8B4E2; /* Lavender */
  --primary-color-5: #FFD166; /* Pastel Yellow */

  /* Shades */
  --primary-color-1-light: #FFAE97;
  --primary-color-1-dark: #E57552;
  --primary-color-2-light: #8EC5E8;
  --primary-color-2-dark: #4D8EB2;
  --primary-color-3-light: #C5DEB3;
  --primary-color-3-dark: #89A771;
  --primary-color-4-light: #E8D0EE;
  --primary-color-4-dark: #BC95C6;
  --primary-color-5-light: #FFDF94;
  --primary-color-5-dark: #E5B94D;

  /* Neutral colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #DDDDDD;
  --dark-gray: #555555;
  --black: #333333;

  /* Typography */
  --base-font-size: 16px;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2-dark);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Sections */
section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color-1);
  color: var(--primary-color-1);
}

.btn-outline:hover {
  background-color: var(--primary-color-1);
  color: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 600;
  color: var(--black);
}

.nav-menu a:hover {
  color: var(--primary-color-1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-2-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-desc {
  color: var(--white);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* About Section */
.about {
  position: relative;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.about-feature-item {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.about-feature-icon {
  font-size: 2rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Features Section */
.features {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  flex-shrink: 0;
}

/* Price Plans Section */
.price-plans {
  background-color: var(--light-gray);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.price-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Team Section */
.team {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
}

.team-image {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.team-image img {
  transition: all 0.3s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color-2);
}

/* Reviews Section */
.reviews {
  background-color: var(--light-gray);
  position: relative;
}

.reviews-slider {
  margin-top: 50px;
  position: relative;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 4rem;
  color: var(--primary-color-2-light);
  opacity: 0.5;
}

.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 */
.core-info {
  background-color: var(--white);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--light-gray);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-4);
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  background-color: var(--light-gray);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  background-color: var(--primary-color-2);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 15px;
  font-size: 1.5rem;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  outline: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 4px;
}

.form-check-label {
  font-size: 0.9rem;
}

/* Blog Section */
.blog {
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  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: 20px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-color-1);
  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);
}

/* FAQ Section */
.faq {
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.faq-item.active .faq-question:after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* Gallery Section */
.gallery {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--medium-gray);
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-1);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  color: var(--medium-gray);
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-color-1);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Additional Pages Common */
.page-header {
  position: relative;
  height: 300px;
  background-color: var(--primary-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.page-title {
  font-size: 2.5rem;
  color: var(--white);
}

/* Animation Utilities */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Shape Decorations */
.shape-decoration {
  position: absolute;
  z-index: 0;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.shape-blob {
  width: 400px;
  height: 400px;
  background-color: rgba(166, 196, 138, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--primary-color-1);
}

.breadcrumb-item + .breadcrumb-item:before {
  content: "/";
  margin: 0 10px;
  color: var(--medium-gray);
}

.breadcrumb-item.active {
  color: var(--dark-gray);
} 