/* ==============================================
   Garden Maintenance – Shared Stylesheet
   ============================================== */

/* ---- Variables ---- */
:root {
  --green-dark:   #2d5a27;
  --green-mid:    #4a8c3f;
  --green-light:  #7abf6b;
  --cream:        #f8f4ec;
  --brown:        #8b6340;
  --brown-light:  #c4a882;
  --text-dark:    #1e1e1e;
  --text-mid:     #444;
  --white:        #ffffff;
  --shadow:       0 4px 18px rgba(0,0,0,.12);
  --radius:       8px;
  --transition:   .3s ease;
  --font-body:    'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); margin-bottom: .5rem; }
h3 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

/* ---- Utility ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark h2 { color: var(--cream); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .5rem;
}

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--green-light);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---- Hero / Carousel ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}
.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-slide img,
.carousel-slide .slide-placeholder {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.slide-placeholder {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.slide-placeholder.sp1 { background: linear-gradient(135deg,#2d5a27,#5a9e4c); }
.slide-placeholder.sp2 { background: linear-gradient(135deg,#3d6e35,#7abf6b); }
.slide-placeholder.sp3 { background: linear-gradient(135deg,#1e3d1b,#4a8c3f); }
.slide-placeholder.sp4 { background: linear-gradient(135deg,#355e2e,#90c97e); }
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: var(--white);
}
.slide-caption h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .25rem; }
.slide-caption p  { font-size: .9rem; opacity: .85; margin: 0; }
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}
.carousel-btn:hover { background: rgba(255,255,255,.4); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 0;
  background: var(--green-dark);
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--green-light);
  transform: scale(1.25);
}

/* ---- Hero Text Banner ---- */
.hero-banner {
  background: var(--green-dark);
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: var(--white);
}
.hero-banner h1 { color: var(--white); margin-bottom: .75rem; }
.hero-banner .tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
}
.hero-banner .badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2rem;
}
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 600;
}
.badge.exotic {
  background: var(--brown);
  border-color: var(--brown-light);
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-mid);
  position: relative;
}
.testimonial-card .quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--green-light);
  opacity: .4;
  font-family: Georgia, serif;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
}
.testimonial-card blockquote {
  font-style: italic;
  margin: 1.5rem 0 1rem;
  color: var(--text-mid);
}
.testimonial-card .client-name {
  font-weight: 700;
  color: var(--green-dark);
  font-size: .95rem;
}
.testimonial-card .client-location {
  font-size: .85rem;
  color: var(--brown);
}
.stars { color: #f5a623; font-size: 1rem; margin-bottom: .5rem; }

/* ---- Coverage Map ---- */
#coverage-map {
  height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.map-note {
  text-align: center;
  font-size: .9rem;
  color: var(--text-mid);
  margin-top: .75rem;
}

/* ---- Services Summary (home) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  display: block;
}
.service-card h3 { margin-bottom: .5rem; color: var(--green-dark); }
.service-card p  { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* ---- About Page ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3.5rem;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: 100px;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #3d6e35 0%, #7abf6b 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  gap: .75rem;
}
.photo-placeholder svg { opacity: .7; }
.photo-placeholder p { font-size: .9rem; margin: 0; }
.skills-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.25rem 0;
}
.skill-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1rem;
  background: var(--cream);
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
}
.skill-icon { font-size: 1.2rem; }
.exotic-box {
  background: linear-gradient(135deg, var(--brown), #a07844);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.exotic-box h3 { color: var(--white); margin-bottom: .5rem; }
.exotic-box p  { font-size: .95rem; opacity: .9; margin: 0; }

/* ---- Qualifications Timeline ---- */
.timeline { margin-top: 1.5rem; }
.timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: var(--green-light);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  z-index: 1;
}
.timeline-content h4 { color: var(--green-dark); margin-bottom: .2rem; }
.timeline-content p  { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* ---- Contact Page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--green-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 2px solid #d9d9d9;
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit { width: 100%; font-size: 1rem; padding: .9rem; border-radius: var(--radius); }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
  text-align: center;
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.info-card h3 {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.info-icon { font-size: 1.3rem; }
.phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
  margin-bottom: .25rem;
}
.pricing-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: .5rem .75rem;
  font-size: .9rem;
}
.pricing-table th {
  background: var(--green-dark);
  color: var(--white);
  font-size: .8rem;
}
.pricing-table tr:nth-child(even) td { background: rgba(0,0,0,.04); }
.pricing-table td:last-child { font-weight: 700; color: var(--green-dark); }
.pricing-note {
  font-size: .82rem;
  color: var(--text-mid);
  margin-top: .5rem;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-header h1 { color: var(--white); }
.page-header p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin: .5rem 0 0; }
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }

/* ---- Footer ---- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand p { font-size: .9rem; margin-top: .75rem; opacity: .8; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .82rem;
  opacity: .65;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; }
  .photo-placeholder { aspect-ratio: 4/3; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--green-dark);
    padding: 1.25rem;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .carousel-slide img,
  .carousel-slide .slide-placeholder { height: 300px; }
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
