/* Express Evaluations — site stylesheet */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark:   #1e3d20;
  --green:        #2f5c31;
  --green-light:  #4a8a4e;
  --gold:         #c9a227;
  --gold-light:   #e8c547;
  --gold-dark:    #9a7a1a;
  --bg:           #ffffff;
  --bg-tint:      #f5f7f5;
  --text:         #2a2a2a;
  --text-muted:   #555555;
  --border:       #d4e0d5;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ── Header ── */

.site-header {
  background: var(--green-dark);
  padding: 0 1.5rem;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-logo .name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.site-logo .tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-style: italic;
}

/* ── Navigation ── */

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: #e8e8e8;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--gold);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

/* ── Service strip (top quick-links) ── */

.service-strip {
  background: var(--green);
  padding: 0 1.5rem;
}

.service-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.service-strip a {
  color: #d4e8d5;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}

.service-strip a:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  text-decoration: none;
}

/* ── Main content ── */

main {
  flex: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

h1 {
  color: var(--green-dark);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

h2 {
  color: var(--green);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

p {
  margin-bottom: 1rem;
  max-width: 720px;
}

/* ── Hero (home page) ── */

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 280px;
  width: 100%;
  border-radius: 4px;
  border: 3px solid var(--gold);
}

.hero-cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  transition: background 0.15s;
}

.hero-cta:hover {
  background: var(--gold-light);
  text-decoration: none;
  color: var(--green-dark);
}

.hero-motto {
  color: var(--green);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  margin-top: 1.25rem;
}

/* ── Services grid ── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.service-card {
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  border-radius: 4px;
  padding: 1.25rem;
  transition: border-top-color 0.15s;
}

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

.service-card h2 {
  margin-top: 0;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

/* ── Testimonials ── */

.testimonial {
  background: var(--bg-tint);
  border-left: 5px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.testimonial cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--green-dark);
}

/* ── Contact ── */

.contact-card {
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem;
  max-width: 380px;
}

.contact-card p {
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--green);
  font-weight: 600;
}

/* ── Service detail page ── */

.service-detail-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--green);
  color: var(--green);
  transition: background 0.15s, color 0.15s;
}

.btn:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}

.btn-back {
  border-color: var(--text-muted);
  color: var(--text-muted);
}

.btn-back:hover {
  background: var(--text-muted);
  color: #fff;
}

/* ── PDF download grid ── */

.pdf-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pdf-item {
  text-align: center;
  width: 120px;
}

.pdf-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
}

.pdf-item a:hover {
  color: var(--gold-dark);
  text-decoration: none;
}

.pdf-icon {
  font-size: 2.5rem;
  line-height: 1;
}

/* ── Breadcrumb ── */

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--green);
}

/* ── Feature list ── */

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── Lists ── */

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li {
  margin-bottom: 0.3rem;
}

/* ── Footer ── */

.site-footer {
  background: var(--green-dark);
  color: #b0c4b1;
  text-align: center;
  font-size: 0.8rem;
  padding: 1.1rem 1.5rem;
  margin-top: auto;
}

.site-footer a {
  color: var(--gold-light);
}

/* ── Contact form ── */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(47, 92, 49, 0.15);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.4rem 0;
}

.checkbox-group label {
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  accent-color: var(--green);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.required {
  color: #c0392b;
}

.btn-submit {
  align-self: flex-start;
  background: var(--green);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.6rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-submit:hover {
  background: var(--green-dark);
}

.form-notice {
  padding: 0.85rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-notice--success {
  background: #eaf5eb;
  border: 1px solid #a3d4a7;
  color: #1e5c22;
}

.form-notice--error {
  background: #fdf0ef;
  border: 1px solid #e8a39d;
  color: #8b2218;
}

/* ── Responsive ── */

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav ul {
    gap: 0.15rem;
  }

  .site-nav a {
    font-size: 0.82rem;
    padding: 0.4rem 0.65rem;
  }

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

  .hero-image {
    max-width: 100%;
    order: -1;
  }
}
