/* ===========================
   PICOLO LANDSCAPING — style.css
   =========================== */

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

:root {
  --green-deep: #1a3a1a;
  --green-mid: #2d6a2d;
  --green-bright: #4a9e4a;
  --green-light: #e8f5e8;
  --gold: #c9a227;
  --gold-light: #f5e6b0;
  --cream: #faf8f2;
  --dark: #111;
  --text: #333;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(26, 58, 26, 0.97);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #fff; letter-spacing: 2px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--green-deep);
  padding: 0.6rem 1.4rem; border-radius: 4px;
  font-weight: 500; font-size: 0.85rem; text-decoration: none;
  letter-spacing: 1px; text-transform: uppercase; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.nav-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 1.5rem; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-deep) 0%, #264d26 50%, var(--green-mid) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-tagline {
  font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 2rem; font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--green-deep);
  padding: 1rem 2rem; border-radius: 4px; font-weight: 500;
  text-decoration: none; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.4); }

.btn-secondary {
  background: transparent; color: #fff;
  padding: 1rem 2rem; border-radius: 4px; font-weight: 400;
  text-decoration: none; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.bilingual-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4);
  border-radius: 20px; padding: 0.4rem 1rem;
  color: var(--gold); font-size: 0.8rem; margin-top: 1rem; letter-spacing: 1px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 2rem;
  backdrop-filter: blur(4px);
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 1.2rem;
}
.hero-feature {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.9rem; color: rgba(255,255,255,0.85); font-size: 0.95rem;
}
.hero-feature-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-light); flex-shrink: 0;
}
.hero-email {
  margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ===== SECTIONS ===== */
.section { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
.section-label {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 0.8rem; font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--green-deep); line-height: 1.2; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem; color: #666; line-height: 1.7;
  max-width: 520px; margin-bottom: 3rem; font-weight: 300;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff; border-radius: 12px; padding: 2rem;
  border: 1px solid #e8e8e0;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-bright);
  box-shadow: 0 12px 32px rgba(45,106,45,0.1);
}
.service-icon {
  width: 48px; height: 48px; background: var(--green-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.2rem; font-size: 1.5rem;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--green-deep); margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.9rem; color: #666; line-height: 1.6; font-weight: 300; }

/* ===== ABOUT ===== */
.about-strip { background: var(--green-deep); padding: 5rem 3rem; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.gold-label { color: var(--gold) !important; }
.white-title { color: #fff !important; }
.white-desc { color: rgba(255,255,255,0.7) !important; max-width: 100% !important; }
.stat-row { display: flex; gap: 2rem; margin-top: 2.5rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--gold); display: block;
}
.stat-label {
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); display: block; margin-top: 0.2rem;
}

.about-owner-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 2.5rem;
}
.owner-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: #fff; margin-bottom: 1.2rem;
}
.owner-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: #fff; margin-bottom: 0.3rem;
}
.owner-title {
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.owner-bio { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; }

/* ===== REVIEWS ===== */
.reviews-bg { background: #f4f0e8; padding: 5rem 3rem; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.review-card {
  background: #fff; border-radius: 12px; padding: 1.8rem;
  border: 1px solid #e4e0d4;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem; color: #444; line-height: 1.7;
  font-weight: 300; margin-bottom: 1.2rem; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 500; color: var(--green-mid);
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.9rem; font-weight: 500; color: var(--green-deep); }
.reviewer-source { font-size: 0.75rem; color: #999; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--gold); padding: 3rem; }
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--green-deep);
}
.cta-text span {
  display: block; font-size: 1rem;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  color: rgba(26,58,26,0.7); margin-top: 0.3rem;
}
.btn-dark {
  background: var(--green-deep); color: #fff;
  padding: 1rem 2.2rem; border-radius: 4px;
  font-weight: 500; text-decoration: none; font-size: 1rem;
  transition: opacity 0.2s; white-space: nowrap;
}
.btn-dark:hover { opacity: 0.85; }

/* ===== CONTACT ===== */
.contact-section {
  max-width: 1200px; margin: 0 auto; padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px; background: var(--green-light);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px;
}
.contact-label {
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: #999; margin-bottom: 0.3rem;
}
.contact-val { font-size: 1rem; color: var(--green-deep); font-weight: 500; }
.contact-val a { color: var(--green-deep); text-decoration: none; }
.contact-val a:hover { color: var(--green-bright); }

.guarantee-badge {
  background: var(--green-light); border: 1px solid #c0dbc0;
  border-radius: 12px; padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; margin-top: 2rem;
}
.guarantee-check { font-size: 1.8rem; }
.guarantee-text { font-size: 0.85rem; color: var(--green-mid); line-height: 1.5; }
.guarantee-text strong { display: block; color: var(--green-deep); margin-bottom: 0.2rem; }

.social-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid #e4e0d4; border-radius: 8px;
  padding: 0.7rem 1.2rem; text-decoration: none;
  color: var(--green-deep); font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.2s;
}
.social-btn:hover { border-color: var(--green-bright); }

.contact-form-card {
  background: #fff; border: 1px solid #e4e0d4;
  border-radius: 12px; padding: 1.8rem;
}
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--green-deep); margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: #999; display: block; margin-bottom: 0.4rem;
}
.form-input, .form-textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1px solid #e0ddd4; border-radius: 6px;
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
  background: #fff; color: var(--text);
}
.form-textarea { resize: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--green-bright); }
.btn-green-full {
  display: block; width: 100%; text-align: center;
  background: var(--green-mid); color: #fff;
  padding: 1rem 2rem; border-radius: 4px;
  font-weight: 500; text-decoration: none; font-size: 1rem;
  transition: opacity 0.2s; margin-top: 1.2rem;
}
.btn-green-full:hover { opacity: 0.88; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); padding: 2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: #fff; letter-spacing: 2px;
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: #555; }
.footer-contact { font-size: 0.82rem; color: #999; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-contact a:hover { opacity: 0.8; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--green-deep); padding: 1.5rem;
  }
  .nav-toggle { display: block; }
  .nav-cta { font-size: 0.75rem; padding: 0.5rem 1rem; }

  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .about-strip { padding: 3rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .cta-banner { padding: 2rem 1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .reviews-bg { padding: 3rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .stat-row { gap: 1.5rem; }
}
