:root {
  /* Color Palette */
  --primary-color-1: #5c8d89; /* Jade Green */
  --primary-color-2: #c96d42; /* Rust Orange */
  --primary-color-3: #334c47; /* Deep Forest */
  --primary-color-4: #e9d9c3; /* Sand */
  --primary-color-5: #a14d34; /* Terra Cotta */
  
  /* Shades */
  --primary-color-1-light: #93b7b3;
  --primary-color-1-dark: #3e635f;
  --primary-color-2-light: #e29873;
  --primary-color-2-dark: #9c542f;
  --primary-color-3-light: #5d7c76;
  --primary-color-3-dark: #1e2e28;
  --primary-color-4-light: #f6f0e5;
  --primary-color-4-dark: #cebea3;
  --primary-color-5-light: #c47d68;
  --primary-color-5-dark: #7a3926;
  
  /* Common Colors */
  --text-dark: #2a3b38;
  --text-light: #f9f5ef;
  --bg-light: #faf7f2;
  --bg-dark: #283434;
}

/* General styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

p {
  line-height: 1.7;
}

a {
  color: var(--primary-color-3);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color-2);
}

.section-title p {
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 18px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.4s ease;
}

header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 20px 0;
  transition: all 0.4s ease;
}

header.sticky .navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color-3);
}

.nav-link {
  font-weight: 600;
  margin: 0 15px;
  padding: 10px 0 !important;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-2);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../FES_images/hero-bg.webp') no-repeat center/cover;
  display: flex;
  align-items: center;
  text-align: left;
}

.hero-content {
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
  max-width: 600px;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 36px;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.about-feature h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Services Section */
.services {
  background-color: var(--bg-light);
}

.services-item {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--primary-color-1);
  z-index: -1;
}

.services-item i {
  font-size: 40px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.services-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.services-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color-2);
  margin: 20px 0;
}

.services-features {
  margin-top: 20px;
}

.services-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.services-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color-1);
}

/* Features Section */
.features {
  background-color: var(--primary-color-3);
  color: var(--text-light);
  position: relative;
}

.features .section-title h2:after {
  background-color: var(--primary-color-4);
}

.features-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.features-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.features-item i {
  font-size: 40px;
  color: var(--primary-color-4);
  margin-bottom: 20px;
}

.features-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color-4);
}

/* Price Plan Section */
.price-plan {
  background-color: var(--bg-light);
}

.price-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-header {
  padding: 30px;
  background-color: var(--primary-color-1);
  color: white;
}

.price-header h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
}

.price-body {
  padding: 30px;
}

.price-features {
  margin-bottom: 30px;
}

.price-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.price-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color-1);
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.team-info h4 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color-2);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: var(--bg-light);
  position: relative;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color-2);
  opacity: 0.3;
  font-size: 20px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.review-author-info p {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.7;
}

/* Core Info Section */
.core-info {
  background-color: white;
}

.core-info-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-info-item i {
  font-size: 40px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.core-info-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 54px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 0 20px;
}

textarea.form-control {
  height: 150px;
  padding: 15px 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.form-check-label {
  margin-left: 10px;
}

/* Blog Section */
.blog {
  background-color: var(--bg-light);
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.blog-meta span {
  margin-right: 20px;
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.7;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary-color-2);
}

/* FAQ Section */
.faq {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px 30px;
  font-weight: 600;
  font-size: 18px;
  background-color: white;
  color: var(--text-dark);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px 30px;
}

/* Gallery Section */
.gallery {
  overflow: hidden;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 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(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 30px;
}

footer h4 {
  color: var(--primary-color-4);
  margin-bottom: 25px;
  font-size: 22px;
}

footer p, footer ul li {
  opacity: 0.8;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 15px;
}

footer ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-color-4);
  opacity: 1;
  padding-left: 5px;
}

#site-copyright {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: block;
  width: 100%;
}

/* Shape decorations */
.shape {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

.shape-1 {
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-2);
}

.shape-2 {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-color-1);
}

/* Animation for elements */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Breadcrumb styles */
.breadcrumb-section {
  padding: 100px 0 20px;
  background-color: var(--primary-color-3);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item img {
  max-height: 24px;
  margin-right: 10px;
} 