:root {
  --eco-005e04: #9dbea0;
  --eco-2b6018-light: #e2ffdf;
  --eco-40c72e-dark: #a5d295;
  --eco-beige: #b3b099;
  --eco-brown: #9a8525;
  --eco-brown-light: #e1d0a6;
  --eco-brown-dark: #422a11;
  --eco-000bff: #d5faff;
  --eco-0004ff-light: #ffffff;
  --eco-003bd5-dark: #c2d2df;
  --white: #FFFFFF;
  --black: #5e4647;
  --a2a2a2-100: #F8F9FA;
  --9d9d9d-200: #afe8ff;
  --797979-300: #ffffff;
  --6a6767-400: #abc0d0;
  --b8b8b8-500: #8ea1a5;
  --8b8b8b-600: #3e454b;
  --574946-700: #2a3541;
  --483836-800: #050607;
  --6a6a6a-900: #5c5f61;
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-pill: 50rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--363636-800);
  background-color: var(--686868-100);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--eco-034110-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--eco-0b8400);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--eco-00a621);
  border-color: var(--eco-0d4500);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--eco-197b2a-dark);
  border-color: var(--eco-09c629-dark);
}

.btn-secondary {
  background-color: var(--eco-brown);
  border-color: var(--eco-brown);
  color: var(--white);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--eco-brown-dark);
  border-color: var(--eco-brown-dark);
}

.btn-outline-primary {
  border-color: var(--eco-02b52d);
  color: var(--eco-33911a);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--eco-103e16);
  color: var(--white);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--eco-14bc17-dark);
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--eco-brown);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--584f51-600);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--eco-1cb010-dark);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--a6808b-700);
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--eco-1f7319);
}

/* Static Hero Section */
.static-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--eco-beige);
  overflow: hidden;
  padding-top: 5rem;
}

.static-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.static-hero .hero-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.static-hero .hero-content {
  position: relative;
  z-index: 5;
  color: var(--white);
  max-width: 100%;
}

.static-hero .hero-image {
  position: relative;
  z-index: 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.static-hero .hero-btns {
  margin-top: 2rem;
}

/* About Section */
#about {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: var(--eco-123a00-light);
  opacity: 0.1;
  z-index: 0;
}

.about-shape-1 {
  top: -150px;
  left: -150px;
}

.about-shape-2 {
  bottom: -150px;
  right: -150px;
}

.about-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-feature {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.about-feature:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: var(--eco-045e19);
  left: 0;
  top: 0;
}

.footer-logo, .footer-title {
  color: #000 !important;
}

.about-feature h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--eco-26b100-dark);
}

/* Services Section */
#services {
  background-color: var(--eco-beige);
  position: relative;
  overflow: hidden;
}

.services-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--eco-0a350d);
  opacity: 0.1;
  z-index: 0;
}

.services-shape-1 {
  top: 20%;
  left: 5%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-2 {
  bottom: 20%;
  right: 5%;
  border-radius: 10% 40% 10% 40%;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-body {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--eco-00b82e-dark);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--eco-brown-dark);
}

.service-features {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--5c5050-300);
  display: flex;
  align-items: center;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--eco-199b00);
  margin-right: 1rem;
}

/* Features Section */
#ffd760tures {
  background-color: var(--white);
  position: relative;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../FUT_images/pattern.png');
  background-repeat: repeat;
  opacity: 0.03;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--eco-beige);
  color: var(--eco-057200-dark);
  border-radius: 50%;
  margin: 0 auto 2rem;
  font-size: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--eco-189832);
  color: var(--white);
}

.feature-card h4 {
  margin-bottom: 1rem;
  color: var(--eco-006c04-dark);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--eco-beige);
  position: relative;
  overflow: hidden;
}

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--eco-06c018);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
}

.price-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  text-align: center;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.price-card.popular {
  border: 2px solid var(--eco-0bc80a);
  transform: scale(1.05);
  z-index: 1;
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-header {
  padding: 3rem 2rem;
  background-color: var(--eco-0a3c05-light);
  color: var(--eco-177d20-dark);
}

.price-header h4 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0;
}

.price-body {
  padding: 2rem;
}

.price-features {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--a9a9a9-200);
}

/* Team Section */
#team {
  background-color: var(--white);
  position: relative;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.team-img {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background-color: var(--eco-00c302);
  padding: 1rem 0;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  margin: 0 0.25rem;
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--white);
  color: var(--eco-00c50f);
}

.team-body {
  padding: 2rem;
  text-align: center;
}

.team-body h4 {
  margin-bottom: 0.5rem;
  color: var(--eco-099a00-dark);
}

.team-body p {
  color: var(--eco-brown);
  font-weight: 500;
  margin-bottom: 0;
}

/* Reviews Section */
#reviews {
  background-color: var(--eco-beige);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  background-color: var(--eco-148d00-light);
  opacity: 0.1;
  z-index: 0;
}

.reviews-shape-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.reviews-shape-2 {
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.review-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  margin: 1rem 0.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--eco-00510a-light);
  font-size: 2rem;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0.2;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 0.25rem;
  color: var(--eco-128e00-dark);
}

.review-author-info p {
  font-size: 0.9rem;
  color: var(--5e5e5e-600);
  margin-bottom: 0;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--white);
  position: relative;
}

.core-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.core-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.core-card:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--eco-185b15);
  top: 0;
  left: 0;
}

.core-icon {
  font-size: 2.5rem;
  color: var(--eco-005e14);
  margin-bottom: 1.5rem;
}

.core-card h4 {
  margin-bottom: 1rem;
  color: var(--eco-165d00-dark);
}

/* Contact Section */
#contact {
  background-color: var(--eco-beige);
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  height: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: 1px solid var(--888888-300);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--eco-0c3602);
  box-shadow: 0 0 0 0.25rem rgba(83, 136, 69, 0.25);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

.contact-info {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--eco-0d5a00-light);
  color: var(--eco-006601-dark);
  border-radius: 50%;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  margin-bottom: 0.5rem;
  color: var(--eco-2bb500-dark);
}

/* Blog Section */
#blog {
  background-color: var(--white);
  position: relative;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.blog-img {
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-body {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--9d737f-600);
  margin-right: 1.5rem;
}

.blog-meta span i {
  margin-right: 0.5rem;
  color: var(--eco-006d1d);
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--eco-004305-dark);
}

.blog-text {
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--c19ca1-800);
  color: var(--8f7d7a-300);
  padding: 5rem 0 0;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--eco-19450a);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links li a {
  color: var(--b3afb0-300);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--eco-459129);
  padding-left: 0.5rem;
}

.copyright {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--eco-36c210);
  color: var(--white);
  border-radius: 50%;
  z-index: 999;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--eco-117a11-dark);
}

/* Disable all animations */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.fade-up {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover,
.team-card:hover,
.blog-card:hover,
.about-feature:hover,
.core-card:hover {
  transform: none !important;
  box-shadow: var(--shadow-sm);
}

.service-card:hover .service-img img,
.team-card:hover .team-img img,
.blog-card:hover .blog-img img {
  transform: none !important;
}

.price-card.popular:hover {
  transform: scale(1.05) !important;
}

.team-social {
  bottom: -60px !important;
}

.team-card:hover .team-social {
  bottom: -60px !important;
} 