/* ============================================
   FullCycle Property Care — Stylesheet
   Edit colors and fonts in the :root variables
   ============================================ */

:root {
  --green-900: #1f4d33;
  --green-700: #2d7a4f;
  --green-500: #4a9b5a;
  --green-50:  #eef7f0;
  --gold:      #e6b54a;
  --ink:       #1a2520;
  --ink-soft:  #4a5853;
  --bg:        #ffffff;
  --bg-alt:    #f7faf6;
  --border:    #e3ebe5;
  --shadow:    0 6px 24px rgba(31, 77, 51, 0.08);
  --radius:    12px;
  --max:       1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 16px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 12px; }
h3 { font-size: 1.2rem; margin: 0 0 8px; }
p  { margin: 0 0 12px; color: var(--ink-soft); }
a  { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 0 0 12px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { text-align: center; }
.section-sub { text-align: center; max-width: 600px; margin: 0 auto 40px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-900); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--green-900); border-color: var(--green-700); }
.btn-ghost:hover { background: var(--green-50); text-decoration: none; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

/* ===== TOP INFO BAR ===== */
.top-bar {
  background: var(--green-700);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 24px;
}
.top-bar-group {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.top-bar-item {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.top-bar-item:hover { color: var(--green-50); text-decoration: none; }

@media (max-width: 700px) {
  .top-bar { font-size: 0.75rem; padding: 6px 0; }
  .top-bar-group { gap: 12px; }
  .top-bar-inner { justify-content: center; }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-900);
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { line-height: 1; }
.logo-dot { color: var(--gold); }
.logo:hover { text-decoration: none; }
.main-nav { display: flex; gap: 24px; flex: 1; justify-content: center; }
.main-nav a { color: var(--ink); font-weight: 500; }
.main-nav a:hover { color: var(--green-700); text-decoration: none; }
.nav-cta { white-space: nowrap; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav drawer — hidden on desktop */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-nav a {
  color: var(--ink);
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}
.mobile-nav a:hover { color: var(--green-700); text-decoration: none; }
.mobile-nav-cta {
  margin-top: 12px;
  text-align: center;
  border-bottom: 0 !important;
  color: #fff !important;
}
.mobile-nav.is-open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 640px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  /* Full-bleed background photo. Drop your image at images/lawn.jpg */
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%),
    url('images/lawn.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--green-700); /* fallback while image loads */
}
.hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-card {
  background: rgba(247, 250, 246, 0.96);
  padding: 48px 52px;
  border-radius: 8px;
  max-width: 560px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}
.hero-card h1 {
  color: var(--green-700);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  background: #fff;
  border: 1px dashed var(--gold);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: inline-block;
  color: var(--ink);
}

/* Generic photo placeholder (used in About section) */
.hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--green-50);
  border: 2px dashed var(--green-500);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green-900);
  color: #fff;
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  font-size: 0.95rem;
  font-weight: 500;
}
.trust-item span { margin-left: 4px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--green-50);
  display: block;
}
.service-img-lawn   { background-image: url('images/service-lawn.png'); }
.service-img-leaves { background-image: url('images/service-leaf.png'); }
.service-img-snow   { background-image: url('images/service-snow.png'); }
.service-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Description grows to fill remaining space so the Learn More button
   below it sits at the same Y position across all three cards. */
.service-card-body > p {
  flex-grow: 1;
}
.service-info {
  padding-top: 18px;
  text-align: center;
}
.service-info summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--green-700);
  list-style: none;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  user-select: none;
  transition: background 0.2s ease;
}
.service-info summary::-webkit-details-marker { display: none; }
.service-info summary::after {
  content: '↓';
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}
.service-info[open] summary::after { transform: rotate(180deg); }
.service-info summary:hover { background: var(--green-900); }
.service-info p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  color: var(--ink);
}
.service-icon { font-size: 2.5rem; margin-bottom: 12px; }

/* ===== OUR WORK GALLERY ===== */
.work-carousel { position: relative; max-width: 1100px; margin: 0 auto; }
.work-viewport { overflow: hidden; }
.work-track { display: flex; gap: 16px; transition: transform 0.45s ease; will-change: transform; }
.work-track .work-card { flex: 0 0 calc((100% - 32px) / 3); }
.work-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: #2d7a4f; color: #fff; font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22); z-index: 2;
  transition: background 0.2s ease;
}
.work-nav:hover { background: #25623f; }
.work-prev { left: -8px; }
.work-next { right: -8px; }
.work-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.work-dot {
  width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%;
  background: #cdd9d0; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.work-dot.is-active { background: #2d7a4f; transform: scale(1.25); }
.work-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.work-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--green-50);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.work-img-1 { background-image: url('images/work-1.jpg'); }
.work-img-2 { background-image: url('images/work-2.jpg'); }
.work-img-3 { background-image: url('images/work-3.jpg'); }
.work-img-5 { background-image: url('images/work-5.jpg'); }
.work-img-6 { background-image: url('images/work-6.jpg'); }
.work-img-7 { background-image: url('images/work-7.jpg'); }
.work-img-8 { background-image: url('images/work-8.jpg'); }
.work-img-9 { background-image: url('images/work-9.jpg'); }
.work-img-10 { background-image: url('images/work-10.jpg'); }
.work-card:hover .work-img { transform: scale(1.04); }

@media (max-width: 860px) {
  .work-track .work-card { flex: 0 0 100%; }
  .work-prev { left: 2px; }
  .work-next { right: 2px; }
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* ===== AREA ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.area-card h3 { color: var(--green-700); }
.area-note { text-align: center; font-size: 0.95rem; }

/* ===== CALCULATOR ===== */
.calculator {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
.calc-fields label,
.booking-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink);
}
.calc-fields label[hidden],
.booking-form label[hidden] { display: none; }
.calc-fields select,
.calc-fields input,
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
.calc-fields fieldset {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 0 16px;
}
.calc-fields legend { font-weight: 600; padding: 0 6px; }
.calc-fields .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-bottom: 0;
}
.calc-fields .checkbox input { width: auto; margin: 0; }

.svc-row {
  margin-bottom: 14px;
}
.svc-row:last-child { margin-bottom: 0; }
.svc-row select {
  width: 100%;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}
.svc-row select.svc-sub { margin-top: 6px; }
.svc-row select:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.calc-result {
  background: var(--green-50);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.result-label { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; margin-bottom: 12px; }
.result-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
}
.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.breakdown-row:last-child { border-bottom: none; }
.b-text { display: flex; flex-direction: column; }
.b-service { font-weight: 700; color: var(--green-900); font-size: 1rem; }
.b-desc { font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }
.b-price { font-weight: 800; font-size: 1.6rem; color: var(--green-900); white-space: nowrap; line-height: 1; }
.b-unit { font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); margin-left: 2px; }
.result-empty { color: var(--ink-soft); font-style: italic; margin: 12px 0 16px; }
.result-note { font-size: 0.85rem; margin-bottom: 20px; }

/* ===== ABOUT ===== */
.about-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-text p { text-align: left; }
.about-sign { font-style: italic; color: var(--ink); margin-top: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  flex-grow: 1;
  margin-bottom: 18px;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--green-900);
}
.testimonial-source {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--green-700);
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin-top: 12px; }

/* ===== BOOKING FORM ===== */
.booking-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note { font-size: 0.9rem; margin-top: 12px; text-align: center; }
.form-confirmation {
  max-width: 720px;
  margin: 0 auto;
  background: var(--green-50);
  border: 2px solid var(--green-500);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.form-confirmation h3 { color: var(--green-900); font-size: 1.5rem; margin-bottom: 12px; }
.contact-direct {
  text-align: center;
  margin-top: 24px;
  font-size: 1.05rem;
}
.contact-direct p { margin: 4px 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-900);
  color: #d6e7dc;
  padding: 56px 0 24px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-logo span { color: var(--gold); }
.site-footer h4 { color: #fff; margin-bottom: 12px; }
.site-footer a { color: #d6e7dc; display: block; margin-bottom: 6px; }
.site-footer a:hover { color: #fff; }
.site-footer p { color: #d6e7dc; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Social media icons */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #d6e7dc;
  margin: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--green-900);
  transform: translateY(-2px);
}

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

/* Tablet & small laptop */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .header-inner { padding: 12px 20px; gap: 12px; }
}

/* Phone */
@media (max-width: 860px) {
  .hero-inner,
  .calculator,
  .footer-inner,
  .form-row {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 40px; min-height: 520px; }
  .hero-card { padding: 32px 28px; }
  .trust-inner { justify-content: flex-start; }
  .booking-form { padding: 24px; }
  .calculator { padding: 24px; gap: 24px; }
  .footer-inner { text-align: center; }
  .container { padding: 0 20px; }
}

/* Small phone */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .hero { padding: 40px 0 32px; min-height: 460px; }
  .hero-card { padding: 24px 20px; }
  .hero-sub { font-size: 0.98rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-note { font-size: 0.82rem; }
  .logo { font-size: 1.3rem; }
  .btn { padding: 12px 20px; font-size: 0.98rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .booking-form,
  .calculator { padding: 20px 16px; }
  .result-price { font-size: 2.4rem; }
  .step { padding: 22px 18px; }
  .area-card,
  .faq-list details { padding: 18px 16px; }
  .service-card-body { padding: 20px 18px; }
  .trust-inner { gap: 12px; }
  .trust-item { font-size: 0.88rem; }
  /* Prevent iOS zoom on form focus */
  input, select, textarea { font-size: 16px !important; }
}
