/* ============================
   NurseryTrees.com - Retro-Faithful Modern Responsive
   Original colors, fonts & feel — modern layout
   ============================ */

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

:root {
  /* Original site colors */
  --green: #008000;
  --green-dark: #006600;
  --green-light: #339933;
  --maroon: #800000;
  --red: #CC3300;
  --red-bright: #FF0000;
  --red-orange: #EA5631;
  --tan: #E0DAB8;
  --tan-light: #EDE9D0;
  --tan-lighter: #F5F1E0;
  --brown: #8B4513;
  --white: #ffffff;
  --black: #000000;
  --text: #333333;

  /* Papyrus is the original font; fallback to similar decorative serif */
  --font-papyrus: Papyrus, 'Palatino Linotype', 'Book Antiqua', Palatino, fantasy, serif;
  --font-body: Georgia, 'Times New Roman', Times, serif;

  --shadow: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.18);
  --radius: 6px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--tan);
}

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

a {
  color: var(--green);
  transition: color var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Utility Classes --- */
.center-text { text-align: center; }
.green-text { color: var(--green); }
.maroon-text { color: var(--maroon); }
.red-text { color: var(--red); }

.green-heading {
  color: var(--green);
  font-family: var(--font-papyrus);
}

.maroon-heading {
  color: var(--maroon);
  font-family: var(--font-papyrus);
}

.red-heading {
  color: var(--red-bright);
  font-family: var(--font-papyrus);
}

/* --- Top Bar --- */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 6px 0;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-bar-location {
  display: none;
}

.top-bar-estimate-btn {
  background: var(--maroon);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: bold;
  font-family: var(--font-papyrus);
  text-decoration: none;
}

.top-bar-estimate-btn:hover {
  background: var(--green-medium);
}

.top-bar-phone,
.top-bar-email {
  color: var(--white);
  font-weight: bold;
  font-family: var(--font-papyrus);
}

.top-bar-phone:hover,
.top-bar-email:hover {
  color: var(--tan);
}

/* --- Header --- */
.header {
  background: var(--tan);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-link {
  display: block;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.anniversary-img {
  height: 75px;
  width: auto;
  margin-right: 10px;
}

.bbb-img {
  height: 70px;
  width: auto;
  display: block;
}

.header-phone {
  display: none;
  font-family: var(--font-papyrus);
  color: var(--maroon);
  font-size: 1.1rem;
}

/* --- Main Navigation --- */
.main-nav {
  background: var(--green-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

.nav-links {
  display: none;
  list-style: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-dark);
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-links.active {
  display: flex;
}

.nav-links li a {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  font-family: var(--font-papyrus);
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}

.nav-links li a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--tan);
}

.nav-cta-item a {
  background: var(--red) !important;
  text-align: center;
}

.nav-cta-item a:hover {
  background: var(--maroon) !important;
}

/* --- Sub-Nav Tree List Button --- */
.sub-nav-buttons {
  padding: 6px 20px;
  background: transparent;
}

.btn-treelist {
  display: inline-block;
  padding: 4px 14px;
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 4px;
  font-family: var(--font-papyrus);
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-treelist:hover {
  background: var(--red);
  color: var(--white);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: bold;
  font-family: var(--font-papyrus);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-estimate img {
  height: 40px;
  width: auto;
}

.btn-deliver {
  background: var(--green);
  color: var(--white);
  font-size: 1.1rem;
  padding: 12px 24px;
}

.btn-deliver:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-submit {
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  padding: 14px 36px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-papyrus);
  font-weight: bold;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-footer-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.95rem;
}

.btn-footer-cta:hover {
  background: var(--maroon);
  color: var(--white);
}

/* --- Section Headings --- */
.section-heading {
  font-family: var(--font-papyrus);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
}

.section-subheading {
  text-align: center;
  font-family: var(--font-papyrus);
  color: var(--maroon);
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.subsection-heading {
  font-size: 1.3rem;
  margin: 30px 0 10px;
  text-align: center;
}

/* --- Hero Section --- */
.hero {
  background: var(--tan);
  padding: 30px 0 10px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-text {
  text-align: center;
}

.hero h1 {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.hero h2 {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 12px;
}

.hero-tagline {
  font-family: var(--font-papyrus);
  color: var(--maroon);
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}


/* --- Farm Banner --- */
.farm-banner {
  background: var(--tan);
  padding: 20px 0 30px;
  text-align: center;
}

.farm-banner-img {
  margin: 0 auto 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.farm-caption {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.photo-caption {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 8px;
}

/* --- Privacy Trees Section --- */
.section-privacy {
  background: var(--tan-light);
  padding: 40px 0;
}

.leader-box {
  background: var(--tan-lighter);
  border-left: 5px solid var(--green);
  padding: 20px 24px;
  margin: 0 0 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.leader-box p {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.leader-box .red-text {
  color: var(--red);
}

.leader-list {
  list-style: none;
  padding-left: 20px;
}

.leader-list li {
  font-family: var(--font-papyrus);
  font-weight: bold;
  font-size: 1rem;
  color: var(--green);
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.leader-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 1.2rem;
}

.leader-list li.maroon-text {
  color: var(--maroon);
}

.privacy-desc {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 0 8px;
}

.fields-photo {
  text-align: center;
  margin-bottom: 30px;
}

.fields-photo img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Tree Links Grid */
.tree-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 20px 0 30px;
}

.tree-link {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 10px 20px;
  background: var(--tan-lighter);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: all var(--transition);
}

.tree-link:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Not Sure Box */
.not-sure-box {
  text-align: center;
  padding: 20px;
  background: var(--tan-lighter);
  border-radius: var(--radius);
  margin-top: 20px;
}

.not-sure-box .red-text {
  font-family: var(--font-papyrus);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-big {
  font-family: var(--font-papyrus);
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--green);
  margin: 12px 0;
}

.contact-big a {
  color: var(--green);
}

.contact-big a:hover {
  color: var(--green-dark);
}

/* --- Before & After --- */
.section-ba {
  background: var(--tan);
  padding: 40px 0;
}

.ba-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ba-item {
  text-align: center;
}

.ba-item img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- Estimate Banner --- */
.estimate-banner {
  background: var(--tan);
  padding: 30px 0;
}

.banner-img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.banner-img:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-hover);
}

/* --- Deliver & Plant --- */
.section-deliver {
  background: var(--tan-light);
  padding: 40px 0;
}

.deliver-content {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.7;
}

.deliver-content p {
  margin-bottom: 16px;
}

.deliver-content strong {
  color: var(--maroon);
}

.deliver-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.deliver-list li {
  padding: 6px 0 6px 28px;
  position: relative;
}

.deliver-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* --- Research Section --- */
.section-research {
  background: var(--tan);
  padding: 40px 0;
}

.research-photo {
  text-align: center;
  margin: 20px 0;
}

.research-photo img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.divider {
  text-align: center;
  margin: 30px auto;
  width: 60%;
  border-bottom: 3px solid var(--green);
}

.section-research .center-text {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* --- Video Section --- */
.section-video {
  background: var(--tan-light);
  padding: 40px 0;
}

.video-area {
  max-width: 700px;
  margin: 0 auto 16px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-video .center-text {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1rem;
}

/* --- Property Value Section --- */
.section-value {
  background: var(--tan);
  padding: 30px 0;
}

.section-value .red-text {
  font-family: var(--font-papyrus);
  font-weight: bold;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.section-value a {
  color: var(--red);
}

.value-photo,
.license-photo {
  margin: 16px auto;
  max-width: 700px;
}

.value-photo img,
.license-photo img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- Ornamental Trees --- */
.section-ornamentals {
  background: var(--tan-light);
  padding: 40px 0;
}

.ornamental-photo {
  text-align: center;
  margin-bottom: 30px;
}

.ornamental-photo img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.orn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.orn-card {
  background: var(--tan-lighter);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}

.orn-card:hover {
  background: var(--green);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.orn-card h3 {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 6px;
}

.orn-card:hover h3 {
  color: var(--white);
}

.orn-card p {
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.5;
}

.orn-card:hover p {
  color: rgba(255,255,255,0.9);
}

/* --- Tree Care --- */
.section-care {
  background: var(--tan);
  padding: 40px 0;
}

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

.care-card {
  background: var(--tan-lighter);
  border-left: 4px solid var(--green);
  padding: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.care-card h3 {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.care-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- About --- */
.section-about {
  background: var(--tan-light);
  padding: 40px 0;
}

.about-photo {
  margin: 0 auto 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 700px;
  width: 100%;
}

.about-content p {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --- FAQ --- */
.section-faq {
  background: var(--tan);
  padding: 40px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--tan-lighter);
  margin-bottom: 8px;
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 20px;
  font-family: var(--font-papyrus);
  font-weight: bold;
  color: var(--green);
  cursor: pointer;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-item summary:hover {
  background: var(--tan);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 20px 16px;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Estimate Form --- */
.section-estimate {
  background: var(--green-dark);
  padding: 40px 0;
}

.section-estimate .section-heading {
  color: var(--white);
}

.section-estimate .section-subheading {
  color: rgba(255,255,255,0.8);
}

.estimate-form {
  max-width: 650px;
  margin: 0 auto;
  background: var(--tan-lighter);
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

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

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

.form-group.full-width {
  margin-bottom: 12px;
}

.form-group label {
  font-family: var(--font-papyrus);
  font-weight: bold;
  color: var(--green);
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 2px solid var(--tan);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,128,0,0.15);
}

/* --- Tree Detail Pages --- */
.tree-page-content {
  padding: 30px 0 40px;
}

.tree-page-content h1 {
  margin-bottom: 4px;
}

.tree-latin {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.tree-hero-img {
  text-align: center;
  margin-bottom: 24px;
}

.tree-hero-img img {
  max-width: 100%;
  max-height: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tree-specs {
  background: var(--tan-lighter);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.tree-specs h3 {
  margin-bottom: 12px;
}

.tree-specs ul {
  list-style: none;
  padding: 0;
}

.tree-specs li {
  padding: 6px 0;
  border-bottom: 1px solid var(--tan);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.tree-specs li:last-child {
  border-bottom: none;
}

.tree-page-content > .container > p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text);
}

.tree-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.tree-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tree-cta {
  text-align: center;
  background: var(--tan-lighter);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 30px;
}

.tree-cta p {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.form-success {
  text-align: center;
  background: var(--tan-lighter);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  max-width: 650px;
  margin: 0 auto;
}

.form-success h3 {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.form-success p {
  font-family: var(--font-papyrus);
  color: var(--green);
  margin-bottom: 8px;
}

.form-success .btn {
  margin-top: 16px;
}

.form-contact {
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1rem;
}

/* --- Tree Link Cards Grid --- */
.tree-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 1.5rem 0;
}

.tree-link-card {
  display: block;
  background: var(--tan-lighter);
  color: var(--green-dark);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-papyrus);
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}

.tree-link-card:hover {
  background: var(--green-light);
  color: var(--white);
}

/* --- Single Column Tree Links --- */
.tree-links-single {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.5rem auto;
  max-width: 500px;
}

/* --- Comparison Table --- */
/* --- Chart Tree Photo Row --- */
.chart-tree-photos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2rem 0;
}

.chart-tree-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 90px;
}

.chart-tree-thumb img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.chart-tree-thumb span {
  margin-top: 4px;
  font-family: var(--font-papyrus);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--green-dark);
  line-height: 1.2;
}

.chart-tree-thumb:hover img {
  border-color: var(--red);
}

.chart-tree-thumb:hover span {
  color: var(--red);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.comparison-table th,
.comparison-table td {
  padding: 8px 10px;
  border: 1px solid var(--green-light);
  text-align: left;
}

.comparison-table th {
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-papyrus);
  font-size: 0.9rem;
  white-space: nowrap;
}

.comparison-table tr:nth-child(odd) {
  background: #FFFF99;
}

.comparison-table tr:nth-child(even) {
  background: #FFFFCC;
}

.comparison-table td:first-child {
  font-weight: bold;
  white-space: nowrap;
}

.comparison-table a {
  color: var(--maroon);
  font-weight: bold;
}

/* --- Value Studies --- */
.value-studies {
  margin: 2rem 0;
}

.value-item {
  background: var(--tan-lighter);
  padding: 16px 20px;
  border-left: 4px solid var(--green-dark);
  margin-bottom: 12px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.value-item p {
  margin: 0;
}

.value-source {
  color: var(--green-dark);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 4px !important;
}

/* --- Munger Quotes --- */
.munger-quote {
  background: var(--tan-lighter);
  border-left: 4px solid var(--maroon);
  padding: 20px 24px;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.munger-quote p {
  font-family: var(--font-papyrus);
  font-size: 1.3rem;
  color: var(--maroon);
  margin: 0;
}

/* --- Advantages Section --- */
.section-advantages {
  background: var(--white);
  padding: var(--section-padding) 0;
}

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

.advantage-item h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.advantage-item p {
  margin: 0;
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials-list {
  margin: 2rem 0;
}

.testimonial-item {
  background: var(--tan-lighter);
  border-left: 4px solid var(--green-dark);
  padding: 20px 24px;
  margin-bottom: 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.testimonial-item p {
  margin: 0 0 8px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-item cite {
  display: block;
  color: var(--maroon);
  font-family: var(--font-papyrus);
  font-style: normal;
  font-weight: bold;
  margin-top: 8px;
}

.advantage-item .testimonial-item {
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 14px 20px;
  margin-bottom: 20px;
}

.advantage-item .testimonial-item p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.advantage-item .testimonial-item cite {
  font-size: 0.85rem;
}

/* --- Footer --- */
.footer {
  background: #2a3a2a;
  color: var(--tan);
  padding: 30px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-family: var(--font-papyrus);
  color: var(--tan);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: var(--tan);
  padding: 3px 0;
  font-size: 0.9rem;
}

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

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-note {
  margin-top: 10px;
  font-style: italic;
  font-size: 0.8rem !important;
  color: var(--tan);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--tan);
}

/* --- Form Success State --- */
.form-success {
  text-align: center;
  padding: 30px 20px;
}

.form-success h3 {
  font-family: var(--font-papyrus);
  color: var(--green);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text);
  font-size: 1rem;
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Tablet (550px+) */
@media (min-width: 550px) {
  .top-bar-location {
    display: inline;
  }

  .top-bar-inner {
    gap: 20px;
  }

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

  .logo-img { height: 60px; }
  .bbb-img { display: block; }

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

  .ba-gallery {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading { font-size: 2rem; }

  .tree-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop (850px+) */
@media (min-width: 850px) {
  .mobile-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    box-shadow: none;
    gap: 0;
  }

  .nav-links li a {
    padding: 10px 14px;
    border-bottom: none;
    font-size: 0.9rem;
  }

  .nav-cta-item a {
    border-radius: var(--radius);
  }

  .header-phone {
    display: block;
  }

  .logo-img { height: 70px; }
  .bbb-img { height: 60px; }

  .hero {
    padding: 40px 0 20px;
  }

  .hero h1 { font-size: 2.6rem; }
  .hero h2 { font-size: 1.5rem; }
  .hero-tagline { font-size: 1.3rem; }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .tree-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .tree-link {
    width: auto;
    max-width: none;
    font-size: 1rem;
    padding: 8px 18px;
  }

  .orn-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .care-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .section-heading { font-size: 2.4rem; }

  .estimate-form {
    padding: 30px;
  }
}

/* Large Desktop (1100px+) */
@media (min-width: 1100px) {
  .hero h1 { font-size: 2.8rem; }

  .nav-links li a {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .logo-img { height: 80px; }
}
