:root {
  /* Primary Color Palette - 5 colors plus shades */
  --primary-green: #36631d;
  --primary-green-light: #448b2b;
  --primary-green-dark: #224414;
  
  --accent-orange: #ff6c27;
  --accent-orange-light: #f06646;
  --accent-orange-dark: #e46127;
  
  --nature-brown: #8b4410;
  --nature-brown-light: #b3472e;
  --nature-brown-dark: #785925;
  
  --sky-teal: #1bc8af;
  --sky-teal-light: #34dfe5;
  --sky-teal-dark: #005c78;
  
  --earth-sand: #ccac1a;
  --earth-sand-light: #fffd00;
  --earth-sand-dark: #c5a91c;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 19px;
  --font-size-small: 12px;
  --font-size-large: 18px;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--sky-teal) 100%);
  --gradient-secondary: linear-gradient(45deg, var(--accent-orange) 0%, var(--earth-sand) 100%);
  --gradient-hero: linear-gradient(rgba(33, 69, 13, 0.70), rgba(28, 176, 184, 0.30));
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #1f1f1f;
  margin: 0;
  padding: 0;
}

/* Respect reduced motion preferences */
@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;
  }
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.27rem !important;
  font-weight: 600;
  color: var(--accent-orange) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-green) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-orange) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-hero), url('../LEB_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .hero-section {
  padding-top: 50px;
    background-attachment: scroll;
  }
}

.hero-content h1 {
  font-size: 2.60rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.24rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: var(--font-size-large);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.06rem;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 113, 65, 0.10);
  animation: float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-shape {
    animation: none;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-22px); }
}

.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;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.08rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.24rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.19rem;
  color: var(--nature-brown);
  margin-bottom: 1.24rem;
  text-align: center;
}

.section-desc {
  font-size: var(--font-size-base);
  color: #5a5858;
  text-align: center;
  margin-bottom: 3.16rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover {
    transform: none;
  }
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.74rem;
}

.service-card h3 {
  font-size: 1.43rem;
  color: var(--primary-green);
  margin-bottom: 1.24rem;
}

.service-card p {
  font-size: var(--font-size-small);
  color: #4f4f4f;
  margin-bottom: 1.74rem;
}

.service-price {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1.24rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3.06rem;
  color: var(--sky-teal);
  margin-bottom: 1.24rem;
}

.feature-item h4 {
  font-size: 1.27rem;
  color: var(--primary-green);
  margin-bottom: 1.24rem;
}

.feature-item p {
  font-size: var(--font-size-small);
  color: #696666;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 4px solid var(--primary-green);
}

.team-member h4 {
  font-size: 1.19rem;
  color: var(--primary-green);
  margin-bottom: 0.73rem;
}

.team-member p {
  font-size: var(--font-size-small);
  color: var(--nature-brown);
}

/* Testimonials Slider */
.testimonial-slide {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(32, 178, 170, 0.05));
  border-radius: 15px;
  margin: 0 15px;
}

.testimonial-text {
  font-size: var(--font-size-large);
  font-style: italic;
  color: var(--primary-green);
  margin-bottom: 2.06rem;
  line-height: 1.8;
}

.testimonial-author {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--nature-brown);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover img {
    transform: none;
  }
}

/* FAQ Section */
.accordion-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-green-dark);
  color: white;
}

.accordion-body {
  background: rgba(45, 80, 22, 0.05);
  color: #2a2a2a;
}

/* Contact Form */
.contact-form {
  background: var(--gradient-secondary);
  padding: 3rem;
  border-radius: 15px;
  color: white;
}

.contact-form .form-control {
  border: none;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 1.24rem;
  background: rgba(255,255,255,0.9);
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(235, 109, 61, 0.30);
  border-color: var(--accent-orange);
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.73rem;
  display: block;
}

.btn-submit {
  background: var(--primary-green);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-green-dark);
  color: white;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  .blog-card:hover {
    transform: none;
  }
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card h3 {
  font-size: 1.27rem;
  color: var(--primary-green);
  margin-bottom: 1.24rem;
}

.blog-card p {
  font-size: var(--font-size-small);
  color: #504b4a;
  margin-bottom: 1.24rem;
}

.blog-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--accent-orange-dark);
}

/* Footer */
.footer {
  background: var(--primary-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--earth-sand);
  margin-bottom: 1.24rem;
  font-size: 1.19rem;
}

.footer p, .footer small {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-size-small);
}

.footer a {
  color: var(--sky-teal-light);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Price Plan Section */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  .price-card:hover {
    transform: none;
  }
}

.price-card.featured {
  border-color: var(--accent-orange);
  background: var(--gradient-primary);
  color: white;
}

.price-card h3 {
  font-size: 1.47rem;
  margin-bottom: 1.24rem;
  color: var(--primary-green);
}

.price-card.featured h3 {
  color: white;
}

.price-amount {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1.74rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.06rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: var(--font-size-small);
}

.price-card.featured .price-features li {
  border-bottom-color: rgba(255,255,255,0.2);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: rgba(45, 80, 22, 0.05);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green) !important; }
.text-accent-orange { color: var(--accent-orange) !important; }
.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.08rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .service-card {
    margin-bottom: 2.06rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.84rem;
  }
  
  .section-title {
    font-size: 1.72rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
} 


/* 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;
    }
}
