/* ============================================
   Landscape Specialists — Services Pages
   Requires: /css/global.css loaded first
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; padding: 170px 0 80px; background: var(--bg); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(139,197,65,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,197,65,0.1); border: 1px solid rgba(139,197,65,0.25);
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--green);
  text-transform: uppercase; letter-spacing: var(--tracking-tight); margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 4.5rem); line-height: 1.05; margin-bottom: 20px;
}
.hero h1 span { color: var(--green); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-mid); max-width: 580px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 20px;
}
.section-title span { color: var(--green); }
.section-desc { color: var(--text-mid); max-width: 600px; font-size: 1.1rem; line-height: 1.7; }

/* ============================================
   CONTENT GRID
   ============================================ */
section { padding: 80px 0; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.1; margin-bottom: 20px;
}
.content-text h2 span { color: var(--green); }
.content-text h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; margin-bottom: 12px; color: var(--green); }
.content-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.content-text strong { color: var(--text); font-weight: 600; }
.content-text ul { list-style: none; margin-bottom: 20px; }
.content-text ul li { position: relative; padding-left: 20px; color: var(--text-mid); margin-bottom: 10px; line-height: 1.7; }
.content-text ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

.content-image {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-subtle); display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(139,197,65,0.15);
}
.content-image img { width: 100%; height: 100%; object-fit: cover; }
.content-image .placeholder-img { color: var(--text-dim); font-size: 0.9rem; text-align: center; padding: 20px; }
.content-image.plan-image { background: #fff; aspect-ratio: 3/4; cursor: zoom-in; }

.content-full { max-width: 800px; }
.inline-link { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--green-light); }

/* ============================================
   FEATURES
   ============================================ */
.features-list { margin-top: 40px; }
.feature-item { padding: 28px 0 28px 28px; border-left: 3px solid var(--green); position: relative; }
.feature-item + .feature-item { border-top: 1px solid var(--border); }
.feature-item h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.3rem; margin-bottom: 8px; color: var(--text); }
.feature-item p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 40px; }
.features-grid .feature-item { border-top: 1px solid var(--border); }
.features-grid .feature-item:nth-child(1),
.features-grid .feature-item:nth-child(2) { border-top: none; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { margin-top: 40px; }
.step { padding: 32px 0 32px 28px; border-left: 3px solid var(--green); position: relative; }
.step + .step { border-top: 1px solid var(--border); }
.step-number { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--green); text-transform: uppercase; letter-spacing: var(--tracking-tight); margin-bottom: 8px; }
.step h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; margin-bottom: 12px; }
.step p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin-bottom: 8px; }
.step ul { list-style: none; margin-top: 12px; }
.step ul li { position: relative; padding-left: 18px; color: var(--text-mid); font-size: 1rem; margin-bottom: 6px; line-height: 1.6; }
.step ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.step strong { color: var(--text); }

/* ============================================
   SERVICE CARDS (Hub Page)
   ============================================ */
.service-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 40px; }
.service-card {
  display: block; padding: 32px; border-radius: 12px;
  border: 1px solid var(--border); background: transparent;
  transition: all var(--transition); text-decoration: none;
}
.service-card:hover { border-color: var(--border-green); background: rgba(139,197,65,0.03); transform: translateY(-2px); }
.service-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; color: var(--text); margin-bottom: 8px; }
.service-card p { color: var(--text-mid); font-size: 1rem; line-height: 1.6; margin-bottom: 14px; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.95rem; color: var(--green); transition: gap var(--transition); }
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 14px; height: 14px; }

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box { background: rgba(139,197,65,0.04); border-left: 3px solid var(--green); padding: 28px; margin: 28px 0; }
.highlight-box h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.3rem; color: var(--green); margin-bottom: 10px; }
.highlight-box p { color: var(--text-mid); line-height: 1.7; }

/* ============================================
   BRANDS
   ============================================ */
.brands { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.brand-tag { background: transparent; border: 1px solid var(--border); padding: 8px 18px; border-radius: 100px; font-size: 1rem; color: var(--text-mid); font-weight: 500; }

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-services { background: var(--bg-alt); border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.related-card {
  display: block; padding: 24px; border-left: 3px solid var(--green);
  background: transparent; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: all var(--transition); text-decoration: none;
}
.related-card:hover { background: rgba(139,197,65,0.03); }
.related-card h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.2rem; color: var(--text); margin-bottom: 6px; }
.related-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band { position: relative; padding: 80px 0; text-align: center; background: var(--green); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; color: #000; }
.cta-band p { color: rgba(0,0,0,0.65); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-dark { background: #000; color: var(--green); border: none; }
.btn-dark:hover { background: var(--bg-subtle); transform: translateY(-2px); }

/* ============================================
   PLANTS GRID
   ============================================ */
.plants-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; }
.plants-list h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: var(--green); margin-bottom: 12px; }
.plants-list ul { list-style: none; columns: 2; column-gap: 24px; }
.plants-list ul li { padding-left: 18px; position: relative; color: var(--text-mid); font-size: 1rem; margin-bottom: 5px; line-height: 1.5; }
.plants-list ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }

/* ============================================
   RESPONSIVE — service page specifics
   ============================================ */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-item:nth-child(2) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .hero { padding: 150px 0 60px; }
  section { padding: 60px 0; }
  .service-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .plants-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) { .plants-list ul { columns: 1; } }

/* ============================================
   ANIMATION
   ============================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeUp 0.5s ease-out; }
