:root {
  --primary-green: #2d5f2e;
  --secondary-green: #4a7c59;
  --accent-green: #6b8e23;
  --light-green: #9acd32;
  --cream: #f8f5f0;
  --dark-green: #1a3a1b;
  --text-dark: #2c3e2f;
  --text-light: #ffffff;
  --warning-orange: #ff8c00;
  --success-green: #228b22;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
}


[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;
}


.lawn-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  position: relative;
  overflow: hidden;
}

.lawn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 95, 46, 0.8);
  z-index: 1;
}

.lawn-hero-content {
  position: relative;
  z-index: 2;
}

.lawn-hero h1 {
  color: var(--text-light);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.lawn-hero .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 400;
}


.service-card {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--text-light);
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  padding: 1.5rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  border-color: var(--accent-green);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--light-green), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-light);
  font-size: 2rem;
}


.team-member {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: var(--text-light);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--light-green);
  object-fit: cover;
}


.testimonial-card {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-left: 4px solid var(--accent-green);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-green);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
}


.lawn-cta-button {
  background: linear-gradient(45deg, var(--accent-green), var(--light-green));
  color: var(--text-light);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  min-width: 180px;
}

.lawn-cta-button:hover {
  background: linear-gradient(45deg, var(--secondary-green), var(--accent-green));
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(107, 142, 35, 0.3);
  color: var(--text-light);
  text-decoration: none;
}

.lawn-secondary-button {
  background: var(--cream);
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.lawn-secondary-button:hover {
  background: var(--accent-green);
  color: var(--text-light);
  text-decoration: none;
}


.stats-section {
  background: var(--primary-green);
  color: var(--text-light);
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-green);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}


.contact-form {
  background: var(--text-light);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: var(--text-light);
  color: var(--text-dark);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


.faq-item {
  background: var(--text-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-green);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f8f9fa;
}

.faq-answer.active {
  max-height: 200px;
  padding: 1.5rem;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--text-light);
  border: 2px solid var(--accent-green);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 1.5rem;
  z-index: 1000;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: var(--accent-green);
  color: var(--text-light);
}

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

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

.cookie-decline:hover {
  background: var(--text-dark);
  color: var(--text-light);
}


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

.navbar-menu .navbar-item {
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.navbar-menu .navbar-item:hover,
.navbar-menu .navbar-item.is-active {
  color: var(--accent-green);
  background-color: transparent;
}


@media screen and (max-width: 768px) {
  .lawn-hero h1 {
    font-size: 2.5rem;
  }
  
  .lawn-hero .subtitle {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .team-avatar {
    width: 100px;
    height: 100px;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .cookie-consent-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .navbar {
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: white;
  }
  
  .navbar-brand {
    width: 100%;
    justify-content: space-between;
  }
  
  .navbar-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: white;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      border-top: 1px solid #e0e0e0;
      padding: 1rem 0;
      display: none;
      flex-direction: column;
      z-index: 99;
      animation: slideDown 0.3s ease-out;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .navbar-menu.is-active {
      display: flex;
      opacity: 1;
      transform: translateY(0);
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navbar-start {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .navbar-item {
      padding: 1rem 1.25rem;
      border-bottom: 1px solid #f0f0f0;
      width: 100%;
      text-align: left;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      min-height: 48px;
      display: flex;
      align-items: center;
  }
  
  .navbar-item:hover {
      background-color: #f8f9fa;
      transform: translateX(6px);
      border-left: 4px solid var(--accent-green);
  }
  
  .navbar-item.is-active {
      color: var(--accent-green);
      border-bottom: 2px solid var(--accent-green);
      background-color: #f8f9fa;
      font-weight: 700;
      border-left: 4px solid var(--accent-green);
  }
  
  .navbar-item:focus {
      outline: 2px solid var(--accent-green);
      outline-offset: 2px;
      background-color: #f0f7f0;
  }
  
  @media screen and (max-width: 480px) {
      .navbar-item {
          padding: 0.875rem 1rem;
          font-size: 1rem;
          min-height: 44px;
      }
  }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
  .navbar-menu {
    padding: 0.875rem 0;
  }
  
  .navbar-item {
    padding: 0.65rem 1rem;
    font-size: 0.98rem;
  }
  
  .navbar-burger {
      padding: 0.5rem;
      border-radius: 8px;
      transition: all 0.3s ease;
  }
  
  .navbar-burger:hover {
      background-color: #f0f0f0;
      transform: scale(1.05);
  }
}

@media screen and (max-width: 480px) {
  .lawn-hero h1 {
    font-size: 2rem;
  }
  
  .lawn-cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    min-width: 160px;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .navbar-menu {
    padding: 0.625rem 0;
  }
  
  .navbar-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .navbar-burger {
    padding: 0.375rem;
  }
  
  .navbar-brand .navbar-item {
    font-size: 1.25rem;
  }
}

.has-primary-background-color {
  background-color: var(--primary-green);
}

.has-background-dark {
  background-color: #333333;
}

.has-text-white {
  color: var(--text-light);
}

.has-text-light {
  color: #f8f9fa;
}

.has-text-dark {
  color: var(--text-dark);
}

.is-size-1 {
  font-size: 3rem;
}

.is-size-2 {
  font-size: 2.5rem;
}

.is-size-3 {
  font-size: 1.75rem;
}

.is-size-4 {
  font-size: 1.25rem;
}

.is-size-5 {
  font-size: 1.1rem;
}

.is-size-7 {
  font-size: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mb-7 {
  margin-bottom: 4rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mt-7 {
  margin-top: 4rem;
}

.ml-3 {
  margin-left: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mx-3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.title {
  font-weight: 700;
  line-height: 1.1;
}

.subtitle {
  font-weight: 400;
  opacity: 0.8;
}

.has-text-centered {
  text-align: center;
}

.has-text-weight-semibold {
  font-weight: 600;
}

.is-fullheight {
  min-height: 100vh;
}

.is-white {
  background-color: #ffffff;
}

.is-grouped {
  display: flex;
  gap: 0.75rem;
}

.is-grouped-centered {
  justify-content: center;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  margin: -0.75rem;
}

.column {
  padding: 0.75rem;
  flex: 1;
}

.column.is-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.column.is-4 {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.column.is-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.column.is-8 {
  flex: 0 0 66.66%;
  max-width: 66.66%;
}

.column.is-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.image {
  display: block;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.section {
  padding: 3rem 1.5rem;
}

.section.is-medium {
  padding: 6rem 1.5rem;
}

.footer {
  padding: 3rem 1.5rem 1.5rem;
}

.navbar {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-burger:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.navbar-burger:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
    background-color: #e8f5e8;
}

.navbar-burger:active {
    transform: scale(0.98);
}

.navbar-burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media screen and (min-width: 769px) {
    .navbar-menu {
        display: flex;
        align-items: center;
        position: static;
        background-color: transparent;
        box-shadow: none;
        border-top: none;
        padding: 0;
        opacity: 1;
        transform: none;
    }
    
    .navbar-menu.is-active {
        display: flex;
    }
    
    .navbar-start {
        gap: 0.5rem;
    }
    
    .navbar-item {
        padding: 0.5rem 0.75rem;
        border-bottom: none;
        width: auto;
        text-align: center;
        font-size: 1rem;
        min-height: auto;
        border-left: none;
        transition: color 0.3s ease;
    }
    
    .navbar-item:hover {
        background-color: transparent;
        transform: none;
        color: var(--accent-green);
    }
    
    .navbar-item.is-active {
        color: var(--accent-green);
        background-color: transparent;
        font-weight: 700;
        border-bottom: 2px solid var(--accent-green);
    }
}

.navbar-start {
  display: flex;
  gap: 1rem;
}

.navbar-item {
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: var(--accent-green);
}

@media print {
  .cookie-consent-banner,
  .navbar,
  .lawn-cta-button,
  .lawn-secondary-button {
    display: none !important;
  }
}
/* Additional Bulma-compatible classes */
.columns.is-vcentered {
  align-items: center;
}

.hero.is-light {
  background-color: var(--cream) !important;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
}

.hero.is-small {
  height: 40vh;
}

.hero.is-medium {
  height: 60vh;
}

.hero-body {
  padding: 3rem 1.5rem;
}

/* Ensure hero sections with custom height work properly */
.hero[style*="height"] {
  min-height: 20vh;
}

.navbar.is-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-item.is-active {
  color: var(--accent-green);
  border-bottom: 2px solid var(--accent-green);
}

.is-fullwidth {
  width: 100% !important;
}

.tag {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 9999px;
  vertical-align: baseline;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag.is-primary {
  background-color: var(--primary-green);
  color: var(--text-light);
}

.tag.is-success {
  background-color: var(--success-green);
  color: var(--text-light);
}

.tag.is-info {
  background-color: #209cee;
  color: var(--text-light);
}

.tag.is-warning {
  background-color: var(--warning-orange);
  color: var(--text-light);
}

/* Custom page-specific classes */
.steps {
  margin: 2rem 0;
}

.media {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.media-left {
  margin-right: 1rem;
  flex-shrink: 0;
}

.media-content {
  flex: 1;
}

.sticky-column {
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}

.service-image {
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
/* Remove bullet points from lists */
ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.content ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.footer ul {
  margin: 0;
}

li {
  margin-bottom: 0.5rem;
}