/* ── LAWN & WEED PRO — SHARED STYLESHEET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #6ab033;
  --green-dark: #4e8a20;
  --green-deeper: #3a6818;
  --dark: #222222;
  --mid: #444444;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --border: #dddddd;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

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

/* ── SVG ICONS ── */
.icon { width: 14px; height: 14px; fill: currentColor; display: block; }

/* ── TOP BAR ── */
.top-bar {
  background: #2b2b2b;
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar .phone { font-weight: 600; color: #fff; letter-spacing: 0.3px; }
.top-bar .phone span { color: var(--green); }
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  font-size: 13px;
  margin-left: 6px;
  transition: background 0.2s;
}
.top-bar-social a:hover { background: var(--green); }

/* ── HEADER ── */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap { padding: 10px 0; flex-shrink: 0; }
.logo-wrap img { height: 65px; width: auto; display: block; }

nav ul { list-style: none; display: flex; align-items: center; flex-wrap: wrap; }
nav ul li { position: relative; }
nav ul li a {
  display: block;
  padding: 28px 14px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: var(--dark);
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul li a:hover,
nav ul li.active > a { color: var(--green); }
nav ul li.active > a { border-bottom: 3px solid var(--green); }

/* Dropdown */
nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  flex-direction: column;
}
nav ul li:hover > ul { display: flex; }
nav ul li ul li a {
  padding: 12px 18px;
  font-size: 12px;
  border-bottom: 1px solid #f0f0f0;
  border-bottom-width: 0;
}
nav ul li ul li { border-bottom: 1px solid #f0f0f0; }
nav ul li ul li a:hover { background: var(--light-bg); color: var(--green); }

.nav-cta a {
  background: var(--green) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 3px;
  margin-left: 6px;
}
.nav-cta a:hover { background: var(--green-dark) !important; }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green) 100%);
  padding: 50px 20px;
  text-align: center;
}
.page-banner-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 3px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: #fff; transform: translateY(-1px); }

/* ── CONTENT SECTION ── */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
.content-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deeper);
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--green);
}
.content-section p { margin-bottom: 15px; color: #555; }
.content-section a:not(.btn) { color: var(--green); }
.content-section a:not(.btn):hover { text-decoration: underline; }

/* ── TWO-COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .col-side { order: -1; }
}

/* ── SIDE CARD ── */
.side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  border-radius: 4px;
  padding: 24px 20px;
}
.side-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.side-card p { font-size: 14px; color: #555; line-height: 1.7; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}
.feature-list li:last-child { border-bottom: none; }
.tick {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}

/* ── AREA LIST ── */
.area-list { list-style: none; }
.area-list li {
  padding: 6px 0 6px 14px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.area-list li::before { content: '›'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.area-list li:last-child { border-bottom: none; }

/* ── CTA BOX ── */
.cta-box {
  background: var(--light-bg);
  border-left: 4px solid var(--green);
  padding: 24px 20px;
  border-radius: 0 4px 4px 0;
}
.cta-box p { margin-bottom: 16px; font-weight: 600; color: #444; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  border-radius: 4px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.service-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-deeper);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ── FAQ ACCORDION ── */
.faq-list { margin-top: 30px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  background: var(--light-bg);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform 0.3s;
}
.faq-item.open .faq-question { background: var(--green); color: #fff; }
.faq-item.open .faq-question::after { content: '−'; color: #fff; }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 18px 20px;
}
.faq-answer p { font-size: 14px; color: #555; margin: 0; }
.faq-answer a { color: var(--green); }

/* ── CONTACT FORM ── */
.contact-form { margin-top: 30px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #444;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(106,176,51,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%23888'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

/* ── CONTACT DETAILS ── */
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #555;
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

/* ── SOCIAL BTN LARGE ── */
.social-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #333;
  color: #fff;
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.social-btn-large:hover { background: var(--green); }
.social-btn-large .icon { width: 16px; height: 16px; }

/* ── FOOTER SOCIAL STRIP ── */
.footer-social-strip {
  background: #1e1e1e;
  padding: 24px 20px;
  text-align: center;
}
.footer-social-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  margin: 0 6px;
  transition: background 0.2s;
}
.footer-social-strip a:hover { background: var(--green); }

/* ── FOOTER ── */
footer {
  background: #2b2b2b;
  color: #aaa;
  padding: 50px 20px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a::before { content: '› '; color: var(--green); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-col .phone-footer {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-top: 10px;
}
.footer-logo { margin-top: 16px; }
.footer-logo img { max-width: 140px; opacity: 0.85; }

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding: 18px 20px;
  text-align: center;
}
.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: #777; }
.footer-bottom-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #3a3a3a;
  color: #aaa;
  margin-left: 6px;
  transition: background 0.2s, color 0.2s;
}
.footer-bottom-social a:hover { background: var(--green); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul li a { padding: 20px 10px; font-size: 12px; }
  .logo-wrap img { height: 50px; }
}
@media (max-width: 600px) {
  nav { display: none; }
}
