:root {
  /* Primary Color Palette */
  --primaryGreen: #007358; /* Main brand color */
  --darkGreen: #0c483a; /* Darker accent */
  --mediumGreen: #43c8a9; /* Medium green-cyan */
  --lightGreen: #79f2d6; /* Light cyan */
  --paleMint: #aaffeb; /* Pale mint accent */

  /* Typography */
  --HeaderFont: "Montserrat", sans-serif;
  --BodyFont: "Lato", sans-serif;

  /* Additional utility colors */
  --white: #ffffff;
  --lightGray: #f8f9fa;
  --mediumGray: #666;
  --darkGray: #333;
  --black: #1a1a1a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--BodyFont);
  line-height: 1.6;
  color: var(--darkGray);
}

hr {
  width: 100%;
  height: 4px;
  background-color: var(--darkGreen);
  border: none;
}

/* Navigation Active State */
.nav-links a.active {
  color: var(--primaryGreen);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primaryGreen);
}

/* Top Contact Bar - Sticky */
.contact-bar {
  background: rgba(255, 255, 255, 0);
  color: var(--darkGray);
  padding: 8px 0;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.contact-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-info a {
  color: var(--mediumGray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-family: var(--BodyFont);
}

.contact-info a:hover {
  color: var(--primaryGreen);
}

.contact-info .email {
  color: var(--primaryGreen);
  font-weight: bold;
}

.contact-message {
  color: var(--mediumGray);
  font-size: 13px;
  font-family: var(--BodyFont);
  font-style: italic;
}

.spanish-contact-message {
  color: var(--primaryGreen);
  margin-left: 10px;
  font-weight: 500;
}

/* Main Navigation */
.main-nav {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: static;
  z-index: 999;
}

.main-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

.nav-links {
  display: flex;
   list-style: none;
  gap: 40px;
  margin-top: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--darkGray);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--BodyFont);
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--primaryGreen);
}

/* Hero Section */
.hero {
  background: linear-gradient(to top, #000000db 0%, #00745989 100%),
    url("../img/grass.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 4rem;
  font-family: var(--HeaderFont);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-content .subtitle {
  font-size: 1.5rem;
  font-family: var(--BodyFont);
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--white);
}

.hero-content .tagline {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-family: var(--BodyFont);
  font-style: italic;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--BodyFont);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--white);
  color: var(--primaryGreen);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primaryGreen), var(--darkGreen));
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primaryGreen);
  transform: translateY(-2px);
}

/* Services Preview Section */
.services-preview {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primaryGreen), var(--darkGreen));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: var(--HeaderFont);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.2rem;
  font-family: var(--BodyFont);
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 600;
  font-family: var(--HeaderFont);
}

.service-card p {
  color: var(--white);
  line-height: 1.6;
  font-size: 14px;
  font-family: var(--BodyFont);
}

.service-buttons{
  margin-top: 40px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: var(--white);
}

.why-choose-us .section-title h2 {
  color: var(--darkGray);
}
.why-choose-us .section-title p {
  color: var(--mediumGray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--darkGray);
  font-family: var(--HeaderFont);
}

.feature p {
  color: var(--mediumGray);
  font-family: var(--BodyFont);
}

/* Customer Reviews Section */
.customer-reviews {
  padding: 100px 0;
  background: var(--lightGray);
}

.customer-reviews .section-title h2 {
  color: var(--darkGray);
}

.customer-reviews .section-title p {
  color: var(--mediumGray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.review-stars {
  font-size: 1.5rem;
  color: var(--mediumGreen);
  margin-bottom: 20px;
}

.review-text {
  font-family: var(--BodyFont);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--darkGray);
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-name {
  font-family: var(--HeaderFont);
  font-weight: 600;
  color: var(--primaryGreen);
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--primaryGreen);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(170,255,235,0.1)"/></svg>');

  background-size: 200px 40px;
  animation: wave 10s linear infinite;
}
@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 200px;
  }
}

.cta-section h2 {
  font-family: var(--HeaderFont);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-family: var(--BodyFont);
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-section .btn-primary {
  color: var(--darkGreen);
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary:hover {
  background: var(--darkGreen);
  color: var(--white);
}

.cta-section .btn-secondary {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--primaryGreen);
  font-family: var(--HeaderFont);
}

.footer-section p,
.footer-section a {
  color: var(--lightGray);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  font-family: var(--BodyFont);
}

.footer-section a:hover {
  color: var(--lightGreen);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--darkGray);
  color: var(--lightGray);
  font-family: var(--BodyFont);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .main-nav .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    margin-top: 140px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px;
    gap: 15px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 13px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 25px;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primaryGreen);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.nav-links.mobile-active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  gap: 30px;
  padding: 20px;
}

.nav-links.mobile-active a {
  font-size: 1.5rem;
  color: var(--darkGray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links.mobile-active a:hover,
.nav-links.mobile-active a.active {
  color: var(--primaryGreen);
}

/* Hide contact bar on mobile */
@media (max-width: 768px) {
  .contact-bar {
    display: none;
  }

  .main-nav {
    padding: 10px 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 999;
  }

  .main-nav .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .logo {
    height: 50px;
  }

  .nav-links {
    display: none;
    margin-top: 0;
  }

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

  /* Adjust hero section for mobile without contact bar */
  .hero {
    margin-top: 0;
  }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
  .contact-bar {
    padding: 5px 0;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-info a {
    font-size: 12px;
  }

  .nav-links {
    gap: 25px;
    margin-top: 20px;
  }

  .nav-links a {
    font-size: 14px;
  }
}