/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #1a3a1a;
  --green-mid: #2d5a27;
  --green-bright: #4a8c2a;
  --gold: #d4a843;
  --gold-light: #e8c36a;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Header ===== */
.site-header {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  height: 55px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.btn-nav {
  background: var(--gold);
  color: var(--green-dark) !important;
  font-weight: 700;
}

.btn-nav:hover {
  background: var(--gold-light);
  color: var(--green-dark) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  /* Fallback gradient — replaced by hero-bg.jpg when available */
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 26, 0.75) 0%,
    rgba(26, 58, 26, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Section Shared ===== */
.section-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.services h2,
.areas h2,
.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: #666;
  font-size: 1.1rem;
}

/* ===== Services ===== */
.services {
  padding: 90px 0;
  background: var(--off-white);
}

.services-category {
  margin-bottom: 56px;
}

.services-category:last-child {
  margin-bottom: 0;
}

.category-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-bright);
  display: inline-block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 180px;
  background-color: var(--green-mid);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Placeholder pattern when image is missing */
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.03) 20px,
      rgba(255, 255, 255, 0.03) 40px
    );
}

.service-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3,
.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.service-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-bright);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.service-card:hover .service-link {
  color: var(--gold);
}

/* ===== Why Us ===== */
.why-us {
  padding: 90px 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-mid);
  min-height: 360px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

/* Placeholder when no image */
.why-image:empty,
.why-image img[src="images/about.jpg"] {
  position: relative;
}

.why-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 28px;
  text-align: left;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green-bright);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.why-item p {
  color: #555;
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 70px 0;
  background: var(--green-bright);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-banner .btn-secondary {
  border-color: var(--white);
}

/* ===== Service Areas ===== */
.areas {
  padding: 90px 0;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.areas h2 {
  color: var(--white);
}

.areas .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.areas-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
}

.areas-list li:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Contact ===== */
.contact {
  padding: 90px 0;
  background: var(--off-white);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  text-align: center;
}

.contact-item {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.contact-link {
  color: var(--green-bright);
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-item p {
  color: #555;
  line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--green-dark);
  color: var(--text-light);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-nav strong {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
  margin-bottom: 4px;
}

.footer-nav li:first-child strong {
  margin-top: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-nav h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gold);
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  background: var(--green-dark);
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 320px;
  display: flex;
  align-items: center;
  text-align: center;
}

.page-hero-short {
  min-height: 240px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 26, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Service Detail Pages ===== */
.service-detail {
  padding: 70px 0;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.service-detail-content .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.service-detail-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.service-detail-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #444;
}

.service-detail-content ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.service-detail-content ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  line-height: 1.6;
  color: #444;
}

.service-detail-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
}

/* FAQ within service pages */
.service-faq {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--off-white);
}

.faq-item {
  margin-bottom: 24px;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.faq-item p {
  color: #555;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-cta {
  background: var(--green-dark);
  color: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.sidebar-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sidebar-cta p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.sidebar-cta .btn-full:last-child {
  margin-bottom: 0;
}

.sidebar-services {
  background: var(--off-white);
  padding: 24px;
  border-radius: var(--radius);
}

.sidebar-services h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.sidebar-services li {
  margin-bottom: 8px;
}

.sidebar-services a {
  color: var(--green-bright);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.sidebar-services a:hover {
  color: var(--gold);
}

/* ===== Contact Page ===== */
.contact-page {
  padding: 70px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: #666;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(74, 140, 42, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--off-white);
  padding: 24px;
  border-radius: var(--radius);
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.contact-info-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-info-card .contact-link {
  font-size: 1.1rem;
}

/* ===== Deals Page ===== */
.deals-section {
  padding: 70px 0;
}

.deal-card {
  display: grid;
  grid-template-columns: 1fr 350px;
  grid-template-rows: auto auto 1fr;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 32px;
}

.deal-featured {
  border: 2px solid var(--gold);
}

.deal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  padding: 28px 32px 0;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

.deal-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 50px;
  margin: 12px 0 0 32px;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
}

.deal-body {
  padding: 16px 32px 32px;
  grid-column: 1;
  grid-row: 3;
}

.deal-img {
  background-color: var(--green-mid);
  background-size: cover;
  background-position: center;
  min-height: 250px;
  grid-column: 2;
  grid-row: 1 / 4;
}

.deal-body p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.deal-details {
  margin-bottom: 24px;
  padding-left: 0;
}

.deal-details li {
  padding: 4px 0 4px 20px;
  position: relative;
  color: #444;
}

.deal-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
}

/* ===== Pricing Page ===== */
.pricing-section {
  padding: 70px 0;
}

.pricing-disclaimer {
  background: var(--off-white);
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 48px;
  border-left: 4px solid var(--gold);
}

.pricing-category {
  margin-bottom: 48px;
}

.pricing-category:last-child {
  margin-bottom: 0;
}

.pricing-table {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-header-row {
  display: none;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.5fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:nth-child(even) {
  background: var(--off-white);
}

.pricing-service h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.pricing-sub {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.pricing-price {
  text-align: center;
}

.price {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
}

.price-unit {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

.pricing-details p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.pricing-cta {
  text-align: right;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== Category descriptions ===== */
.category-desc {
  color: #666;
  margin-top: -12px;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
  }

  .btn-nav {
    margin: 8px 20px;
    text-align: center;
    border-radius: var(--radius);
  }

  .hero {
    min-height: 400px;
  }

  .hero-content {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-image {
    min-height: 260px;
  }

  .why-image img {
    min-height: 260px;
  }

  .why-text h2 {
    text-align: center;
  }

  .service-img {
    height: 160px;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services, .why-us, .areas, .contact, .cta-banner {
    padding: 60px 0;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-short {
    min-height: auto;
  }

  .page-hero-content {
    padding: 36px 0;
  }

  .page-hero h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-sidebar {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .deal-card {
    display: flex;
    flex-direction: column;
  }

  .deal-title {
    padding: 20px 20px 0;
    font-size: 1.3rem;
    order: 1;
  }

  .deal-badge {
    margin: 8px 0 0 20px;
    order: 2;
    align-self: flex-start;
  }

  .deal-img {
    min-height: 180px;
    margin-top: 12px;
    order: 3;
  }

  .deal-body {
    padding: 16px 20px 24px;
    order: 4;
  }

  .service-detail, .contact-page, .deals-section, .pricing-section {
    padding: 50px 0;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .pricing-price {
    text-align: left;
  }

  .price {
    display: inline;
  }

  .price-unit {
    display: inline;
    margin-left: 4px;
  }

  .pricing-cta {
    text-align: left;
  }
}
