:root {
  /* Primary color palette - 5 colors with light/dark shades */
  --primary-green: #274820;
  --primary-green-light: #4a7b5d;
  --primary-green-dark: #1e2d1a;
  
  --eco-blue: #3a70b8;
  --eco-blue-light: #5988ec;
  --eco-blue-dark: #1b5b98;
  
  --nature-brown: #99624e;
  --nature-brown-light: #9b6f47;
  --nature-brown-dark: #5f371e;
  
  --sage-green: #7b9c7b;
  --sage-green-light: #95ac95;
  --sage-green-dark: #5b8365;
  
  --earth-beige: #cbb996;
  --earth-beige-light: #d1c8a6;
  --earth-beige-dark: #af9a7c;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--eco-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--sage-green) 0%, var(--earth-beige) 100%);
  --gradient-hero: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--eco-blue-dark) 50%, var(--nature-brown-dark) 100%);
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 18px;
  --font-size-lg: 18px;
  --font-size-xl: 21px;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1rem;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-green-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green-dark);
}

h1 { font-size: 2.28rem; }
h2 { font-size: 1.81rem; }
h3 { font-size: 1.57rem; }
h4 { font-size: 1.43rem; }
h5 { font-size: 1.22rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(11px);
  box-shadow: 0 7px 20px rgba(39, 79, 40, 0.10);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(35, 67, 26, 0.15);
}

.navbar-brand {
  font-size: 1.61rem !important;
  font-weight: 700;
  color: var(--primary-green) !important;
}

.nav-link {
  color: var(--primary-green-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--eco-blue) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GIF_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero h1 {
  padding-top: 50px !important;
  color: white;
  font-size: 3rem;
  margin-bottom: 1.65rem;
}

.hero p {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--eco-blue);
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 19px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(32, 71, 28, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 20px 40px rgba(50, 79, 40, 0.15);
  border-color: var(--sage-green-light);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 19px;
  margin-bottom: 1.62rem;
}

.service-price {
  font-size: 1.94rem;
  font-weight: 700;
  color: var(--eco-blue);
  margin-bottom: 1rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(44, 87, 43, 0.10);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--sage-green-light);
}

/* Reviews/Testimonials */
.reviews-carousel {
  background: var(--gradient-secondary);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.57rem;
  color: var(--nature-brown-dark);
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(48, 75, 38, 0.10);
  overflow: hidden;
}

.faq-question {
  background: var(--sage-green-light);
  color: var(--primary-green-dark);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: var(--sage-green);
}

.faq-answer {
  padding: 0 1.5rem;
  color: var(--nature-brown-dark);
  border-top: 1px solid var(--earth-beige);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.contact-form .form-control {
  border-radius: 10px;
  border: none;
  padding: 12px 20px;
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.contact-form .btn-primary {
  background: var(--nature-brown);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: var(--nature-brown-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--primary-green-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--sage-green-light);
  margin-bottom: 1.59rem;
}

.footer a {
  color: var(--earth-beige-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--primary-green);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Animation utilities */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Buttons */
.btn-eco {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-eco:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(58, 93, 48, 0.30);
  color: white;
}

/* Feature cards */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(51, 84, 38, 0.10);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--eco-blue);
  margin-bottom: 1.74rem;
}

/* Price plans */
.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(41, 79, 36, 0.10);
  transition: transform 0.3s ease;
  border: 3px solid transparent;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--sage-green);
}

.price-card.featured {
  border-color: var(--eco-blue);
  background: var(--gradient-secondary);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--eco-blue);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--earth-beige);
}

.price-features li:last-child {
  border-bottom: none;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
