:root {
  --primary-green: #2d5a3d;
  --primary-green-dark: #1f4229;
  --primary-green-light: #3d7a52;
  --accent-green: #52a86f;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-green) !important;
  letter-spacing: 0.5px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.85) 0%, rgba(45, 90, 61, 0.7) 100%);
  display: flex;
  align-items: center;
}

.min-vh-70 {
  min-height: 70vh;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-body {
  padding: 1.25rem;
}

.selection-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease;
}

.selection-card:hover {
  transform: translateY(-5px);
}

.selection-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.package-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
}

.package-card.featured {
  border: 2px solid var(--accent-green);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.value-card,
.feature-card,
.contact-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.value-card:hover,
.feature-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
}

.icon-circle-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.footer {
  background-color: #1a1a1a;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-green) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-green);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px var(--shadow);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.page-header {
  padding: 4rem 0;
}

.policy-content h2,
.policy-content h3 {
  color: var(--primary-green);
  margin-top: 2rem;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: var(--white);
}

.form-control:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 0.2rem rgba(82, 168, 111, 0.25);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.approach-list li strong {
  color: var(--primary-green);
}

.commitment-section {
  background: var(--light-bg);
}

@media (max-width: 768px) {
  .hero-image-container,
  .hero-image {
    min-height: 500px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .hero-image-container,
  .hero-image {
    min-height: 400px;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
