:root {
  --green: #6ab04a;
  --green-dark: #3f7c2a;
  --orange: #f39c12;
  --orange-dark: #d87f00;
  --sky-top: #6cc6ff;
  --sky-bottom: #c8f4ff;
  --bg-light: #f7faf5;
  --text-main: #273135;
  --text-muted: #5f6c72;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  --radius-lg: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: #ffffff;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start;
  text-align: right;
}

.logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.logo-small {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.logo-big {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
}

/* Phone header button */

.phone-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 900;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  border: none;
  text-decoration: none;
  gap: 0.4rem;
}

.phone-header:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
}

.main-nav a:hover {
  background-color: var(--bg-light);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
}

.btn-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.btn-outline {
  background: #ffffff;
  color: var(--green-dark);
  border: 2px solid var(--green);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--bg-light);
}

/* HERO */

.hero {
  background: linear-gradient(to bottom, var(--sky-top), var(--sky-bottom));
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-text p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* simple illustration */

.hero-illustration {
  text-align: center;
}

.lawn {
  background: linear-gradient(to top, var(--green), #9ed579);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.lawn-stripe {
  height: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.lawn-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.lawn-content h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.lawn-content p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.lawn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  border-radius: inherit;
  z-index: 1;
}

.hero-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTIONS */

.section {
  padding: 3rem 0;
}

.section-light {
  background-color: var(--bg-light);
}

.section h2 {
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 630px;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.section-cta {
  margin-top: 2rem;
  font-weight: 500;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--card-shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.service-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 0.75rem auto;
}
/* ABOUT */

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  align-items: flex-start;
}

.about-highlight {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--card-shadow);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 700;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  min-height: 140px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.gallery-item.placeholder {
  background: repeating-linear-gradient(
    45deg,
    #dcefd2,
    #dcefd2 8px,
    #c9e4c0 8px,
    #c9e4c0 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 600;
}

.gallery-item span {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* CONTACT */

.contact-section {
  background: linear-gradient(to top, #e7f7df, #ffffff);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  align-items: flex-start;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-details li {
  margin-bottom: 0.4rem;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.3rem 1.3rem;
  box-shadow: var(--card-shadow);
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #c9d5dd;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
}

.contact-form button {
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

 h3.center{
    text-align: center;
}

/* FOOTER */

.site-footer {
  background-color: var(--green-dark);
  color: #ffffff;
  padding: 1.2rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .main-nav {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone-header {
    order: 3;
  }

  .logo-circle {
    width: 80px;
    height: 80px;
  }
}

 

@media (max-width: 520px) {
  .header-inner {
    padding: 0.6rem 0.9rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}
