


:root {
  --primary-green: #2d5016;
  --secondary-green: #4a7c59;
  --light-green: #7fb069;
  --accent-gold: #d4a574;
  --dark-gray: #2c3e50;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #6c757d;
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong,
.text-white b,
.text-light strong,
.text-light b {
  color: inherit;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--dark-gray);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-banner-text {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: var(--primary-green);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background: var(--secondary-green);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn.decline:hover {
  background: var(--white);
  color: var(--dark-gray);
}


.navbar-custom {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand-custom {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.navbar-brand-custom:hover {
  color: var(--secondary-green);
}

.nav-link-custom {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--primary-green);
}


.hero-section {
  background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(74, 124, 89, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%234a7c59"/><circle cx="20" cy="20" r="3" fill="%237fb069" opacity="0.6"/><circle cx="80" cy="30" r="2" fill="%237fb069" opacity="0.4"/><circle cx="60" cy="70" r="4" fill="%237fb069" opacity="0.8"/></svg>');
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}


.btn-primary-custom {
  background: var(--accent-gold);
  border: none;
  color: var(--text-dark);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary-custom:hover {
    background: #c49463;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-primary-custom.active {
    background: var(--secondary-green);
    color: var(--white);
    border: none;
}

.btn-primary-custom.active:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-secondary-custom {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary-custom:hover {
  background: var(--white);
  color: var(--primary-green);
}


.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-green);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.service-card,
.testimonial-card,
.project-card,
.blog-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover,
.testimonial-card:hover,
.project-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3,
.testimonial-card h4,
.project-card h3,
.blog-card h3 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p,
.testimonial-card p,
.project-card p,
.blog-card p {
  color: var(--text-light);
  line-height: 1.6;
}


.price-tag {
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}


.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--light-green);
}


.form-control-custom {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
}

.form-label-custom {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}


.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: none;
  border: none;
  padding: 20px;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-light);
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-icon.rotated {
  transform: rotate(45deg);
}


.footer-custom {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-custom h5 {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-custom p,
.footer-custom a {
  color: #adb5bd;
  text-decoration: none;
  line-height: 1.6;
}

.footer-custom a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  color: #adb5bd;
}


.text-primary-custom {
  color: var(--primary-green) !important;
}

.text-secondary-custom {
  color: var(--secondary-green) !important;
}

.bg-light-custom {
  background: var(--light-gray) !important;
}

.bg-primary-custom {
  background: var(--primary-green) !important;
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}


.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}


html {
  scroll-behavior: smooth;
}


.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}