/* RESET & GLOBALS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2d3748;
  background-color: #f7fafc;
  line-height: 1.6;
}

/* NAVIGATION */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a4331;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: #2e7d32;
}

/* BUTTONS */
.btn-primary {
  background-color: #2e7d32;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #1b5e20;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(15, 35, 25, 0.78), rgba(15, 35, 25, 0.78)), 
              url('https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 6rem 1.5rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* SERVICES SECTION */
.services {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.services h2 {
  text-align: center;
  font-size: 2.25rem;
  color: #1a4331;
  margin-bottom: 3rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #2e7d32;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.35rem;
  color: #1a4331;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #4a5568;
}

/* QUOTE / FORM SECTION */
.quote-section {
  background-color: #ebf2ed;
  padding: 5rem 1.5rem;
  text-align: center;
}

.quote-section h2 {
  font-size: 2.25rem;
  color: #1a4331;
  margin-bottom: 0.5rem;
}

.quote-section p {
  color: #4a5568;
  margin-bottom: 2.5rem;
}

.quote-section a {
  color: #2e7d32;
  font-weight: 600;
  text-decoration: underline;
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background-color: #1a4331;
  color: #a0aec0;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  .quote-form {
    padding: 1.5rem;
  }
}
/* MULTI-PAGE NAVIGATION STYLES */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2e7d32;
}

/* PAGE HEADERS */
.page-header {
  background-color: #1a4331;
  color: #ffffff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #cbd5e0;
  font-size: 1.1rem;
}