:root {
  /* Primary eco-friendly color palette */
  --primary-green: #447956;
  --primary-brown: #9f630f;
  --primary-cream: #e7e7e7;
  --primary-gold: #e0b185;
  --primary-forest: #1b3b10;
  
  /* Light shades */
  --light-green: #90c087;
  --light-brown: #f2ca90;
  --light-cream: #fefcf6;
  --light-gold: #fcecbb;
  --light-forest: #597648;
  
  /* Dark shades */
  --dark-green: #3f5b49;
  --dark-brown: #603718;
  --dark-cream: #f9f5ee;
  --dark-gold: #bfa16c;
  --dark-forest: #162b07;
  
  /* Aliases for easier use */
  --eco-green: var(--primary-green);
  --eco-brown: var(--primary-brown);
  --eco-cream: var(--primary-cream);
  --eco-gold: var(--primary-gold);
  --eco-forest: var(--primary-forest);
  --eco-light: var(--light-cream);
  --eco-dark: var(--dark-forest);
  
  /* Text colors */
  --text-primary: #384937;
  --text-secondary: #799261;
  --text-light: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-forest));
  --gradient-secondary: linear-gradient(45deg, var(--primary-cream), var(--primary-gold));
  --gradient-accent: linear-gradient(180deg, var(--primary-brown), var(--dark-brown));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light-cream);
  font-size: 19.00px;
}

/* Header */
.navbar-brand {
  font-size: 1.55rem !important;
  font-weight: 600;
  color: var(--primary-forest) !important;
}

.navbar {
  background: rgba(255, 254, 253, 0.95) !important;
  backdrop-filter: blur(17px);
  box-shadow: 0 9px 19px rgba(0,0,0,0.1);
}

.nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.12rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.17rem;
}

.hero-subtitle {
  font-size: 1.52rem;
  color: var(--light-cream);
  margin-bottom: 1.64rem;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--light-cream);
  opacity: 0.9;
}

.hero-image img {
  border-radius: 23px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.56rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.43rem;
  color: var(--primary-green);
  margin-bottom: 1.17rem;
  text-align: center;
}

.section-desc {
  font-size: 1.12rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3.09rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Features */
.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--light-cream);
  border-radius: 19px;
  box-shadow: 0 17px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
}

.about-feature:hover {
  transform: translateY(-12px);
}

.about-feature i {
  font-size: 3.12rem;
  color: var(--primary-green);
  margin-bottom: 1.17rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-secondary);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 18px 314px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 2.07rem;
}

.service-card:hover {
  transform: translateY(-14px);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.64rem;
}

.service-name {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

.service-desc {
  color: var(--text-secondary);
  margin-bottom: 1.64rem;
}

.service-features {
  color: var(--primary-green);
  font-size: 1.00rem;
  margin-bottom: 1.64rem;
}

.service-price {
  font-size: 2.07rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2.07rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 13px solid var(--primary-cream);
  box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

/* Blog Section */
.blog-section {
  background: var(--gradient-secondary);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.17rem;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 1.17rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  background: var(--light-cream);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-forest);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.55rem;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  display: none;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.contact-form {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 3rem;
  color: var(--text-primary);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1.64rem;
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.12rem;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--dark-forest);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.64rem;
}

.footer p, .footer a {
  color: var(--light-cream);
  text-decoration: none;
  margin-bottom: 0.65rem;
}

.footer a:hover {
  color: white;
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
  height: 100%;
}

.features-item:hover {
  transform: translateY(-5px);
}

.features-item i {
  font-size: 3.12rem;
  color: var(--primary-green);
  margin-bottom: 1.64rem;
}

.features-item h4 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Price Plans Section */
.priceplan-section {
  background: var(--light-cream);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-13px);
}

.price-card h3 {
  font-size: 1.90rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.17rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-card ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.price-card ul li::before {
  content: "âœ“";
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

.price-amount {
  font-size: 3.12rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1.73rem;
}

/* Team Section */
.team-section {
  background: white;
}

.team-member h4 {
  font-size: 1.24rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.65rem;
}

.team-member p {
  color: var(--primary-green);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--light-cream);
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 1rem;
  height: auto;
}

.review-card p {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.64rem;
  font-size: 1.12rem;
}

.review-card h5 {
  color: var(--primary-green);
  font-weight: 600;
}

/* Case Studies Section */
.casestudy-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-green);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
}

.casestudy-item:hover {
  transform: translateX(10px);
}

.casestudy-item h4 {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Process Section */
.process-section {
  background: white;
}

.process-item {
  text-align: center;
  margin-bottom: 2.07rem;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.90rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.process-item h4 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Timeline Section */
.timeline-item {
  padding: 1.5rem 0;
  border-left: 4px solid var(--primary-green);
  margin-left: 2rem;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 2.07rem;
}

.timeline-item::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-green);
  position: absolute;
  left: -12px;
  top: 1.8rem;
  box-shadow: 0 0 0 4px white;
}

.timeline-item h4 {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Career Section */
.career-section {
  background: var(--light-cream);
}

.career-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-item h4 {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.65rem;
}

.career-item p:first-of-type {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 1.17rem;
}

/* Core Info Section */
.coreinfo-item {
  text-align: center;
  padding: 2.5rem 2rem;
  margin-bottom: 2.07rem;
}

.coreinfo-item i {
  font-size: 3.12rem;
  color: var(--primary-green);
  margin-bottom: 1.64rem;
}

.coreinfo-item h4 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Blog Section - Enhanced */
.blog-card h3 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

.blog-card a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-card a:hover {
  color: var(--dark-green);
}

/* FAQ Section - Enhanced */
.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Gallery - Enhanced */
.gallery-section {
  background: white;
}

.gallery-item {
  margin-bottom: 2.07rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item a {
  display: block;
  overflow: hidden;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-cream);
  padding: 2rem 0;
}

.breadcrumb-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

/* Space page */
#space {
  min-height: 60vh;
  background: var(--gradient-secondary);
  border-radius: 20px;
  margin: 3rem 0;
}

/* Enhanced Sections */

/* Features Section */
.features-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
  height: 100%;
}

.features-item:hover {
  transform: translateY(-5px);
}

.features-item i {
  font-size: 3.12rem;
  color: var(--primary-green);
  margin-bottom: 1.64rem;
}

.features-item h4 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Price Plans Section */
.priceplan-section {
  background: var(--light-cream);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card h3 {
  font-size: 1.90rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.17rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-card ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.price-card ul li::before {
  content: "âœ“";
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

.price-amount {
  font-size: 3.12rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1.73rem;
}

/* Reviews Section */
.reviews-section {
  background: var(--light-cream);
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 1rem;
}

.review-card p {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.64rem;
  font-size: 1.12rem;
}

.review-card h5 {
  color: var(--primary-green);
  font-weight: 600;
}

/* Case Studies Section */
.casestudy-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-green);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
}

.casestudy-item:hover {
  transform: translateX(10px);
}

.casestudy-item h4 {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Process Section */
.process-item {
  text-align: center;
  margin-bottom: 2.07rem;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.90rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.process-item h4 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Timeline Section */
.timeline-item {
  padding: 1.5rem 0;
  border-left: 4px solid var(--primary-green);
  margin-left: 2rem;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 2.07rem;
}

.timeline-item::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-green);
  position: absolute;
  left: -12px;
  top: 1.8rem;
  box-shadow: 0 0 0 4px white;
}

.timeline-item h4 {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Career Section */
.career-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.07rem;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-item h4 {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.65rem;
}

.career-item p:first-of-type {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 1.17rem;
}

/* Core Info Section */
.coreinfo-item {
  text-align: center;
  padding: 2.5rem 2rem;
  margin-bottom: 2.07rem;
}

.coreinfo-item i {
  font-size: 3.12rem;
  color: var(--primary-green);
  margin-bottom: 1.64rem;
}

.coreinfo-item h4 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1.17rem;
}

/* Enhanced Gallery */
.gallery-section {
  background: white;
}

.gallery-item {
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item a {
  display: block;
  overflow: hidden;
}

/* FAQ Enhancements */
.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Background variations */
.bg-eco-light {
  background: var(--light-cream);
}

/* Background variations */
.bg-eco-light {
  background: var(--light-cream);
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
