/* ============================================================
   gardening-turf.css — /services/gardening-turf
   Depends on: pearl.css + service-page.css
   Design: Natural green-meets-brand — deep green dark section,
   animated grass blades hero, floating leaf icons, ownership
   model comparison table, seasonal calendar grid.
============================================================ */

/* Hero blobs — green tones */
.gt-blob--1 {
  background: radial-gradient(circle, rgba(22, 163, 74, 0.22), transparent 70%);
  width: 520px;
  height: 520px;
}

.gt-blob--2 {
  background: radial-gradient(circle, rgba(199, 0, 126, 0.18), transparent 70%);
  bottom: -80px;
  right: -60px;
}

/* Animated grass blades at bottom of hero */
.gt-grass-row {
  position: absolute;
  width: 100%;
  bottom: 7px;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  gap: 0;
  overflow: hidden;
}
.gt-whatsapp {
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.gt-whatsapp::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.gt-whatsapp::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.gt-blade {
  width: 8px;
  flex-shrink: 0;
  background: linear-gradient(to top,
      rgba(16, 235, 96, 0.4),
      rgba(22, 163, 74, 0.1));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  animation: grassSway 0s ease-in-out infinite alternate;
}

.gt-blade--0 {
  height: 40px;
  animation-duration: 2.1s;
  animation-delay: 0s;
}

.gt-blade--1 {
  height: 55px;
  animation-duration: 1.9s;
  animation-delay: 0.1s;
}

.gt-blade--2 {
  height: 35px;
  animation-duration: 2.4s;
  animation-delay: 0.2s;
}

.gt-blade--3 {
  height: 60px;
  animation-duration: 2s;
  animation-delay: 0.15s;
}

.gt-blade--4 {
  height: 45px;
  animation-duration: 1.8s;
  animation-delay: 0.3s;
}

.gt-blade--5 {
  height: 38px;
  animation-duration: 2.3s;
  animation-delay: 0.05s;
}

.gt-blade--6 {
  height: 52px;
  animation-duration: 2.1s;
  animation-delay: 0.25s;
}

.gt-blade--7 {
  height: 42px;
  animation-duration: 1.7s;
  animation-delay: 0.35s;
}

.gt-blade--8 {
  height: 58px;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}

.gt-blade--9 {
  height: 36px;
  animation-duration: 2s;
  animation-delay: 0.4s;
}

.gt-blade--10 {
  height: 50px;
  animation-duration: 1.9s;
  animation-delay: 0.2s;
}

.gt-blade--11 {
  height: 43px;
  animation-duration: 2.5s;
  animation-delay: 0.08s;
}

.gt-blade--12 {
  height: 62px;
  animation-duration: 1.8s;
  animation-delay: 0.3s;
}

.gt-blade--13 {
  height: 39px;
  animation-duration: 2.1s;
  animation-delay: 0.18s;
}

.gt-blade--14 {
  height: 48px;
  animation-duration: 2.3s;
  animation-delay: 0.28s;
}

.gt-blade--15 {
  height: 57px;
  animation-duration: 1.6s;
  animation-delay: 0.12s;
}

.gt-blade--16 {
  height: 41px;
  animation-duration: 2.4s;
  animation-delay: 0.38s;
}

.gt-blade--17 {
  height: 54px;
  animation-duration: 2s;
  animation-delay: 0.22s;
}

.gt-blade--18 {
  height: 37px;
  animation-duration: 1.9s;
  animation-delay: 0.42s;
}

.gt-blade--19 {
  height: 49px;
  animation-duration: 2.2s;
  animation-delay: 0.06s;
}

@keyframes grassSway {
  from {
    transform: rotate(-6deg);
  }

  to {
    transform: rotate(6deg);
  }
}

/* Floating leaves */
.gt-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gt-leaf {
  position: absolute;
  color: rgba(34, 197, 94, 0.08);
  animation: leafDrift 0s ease-in-out infinite;
}

.gt-leaf--1 {
  font-size: 70px;
  top: 15%;
  left: 5%;
  animation-duration: 10s;
}

.gt-leaf--2 {
  font-size: 50px;
  top: 40%;
  right: 8%;
  animation-duration: 13s;
  animation-delay: -3s;
}

.gt-leaf--3 {
  font-size: 40px;
  bottom: 30%;
  left: 20%;
  animation-duration: 9s;
  animation-delay: -5s;
}

.gt-leaf--4 {
  font-size: 60px;
  top: 60%;
  right: 30%;
  animation-duration: 11s;
  animation-delay: -2s;
}

@keyframes leafDrift {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.08;
  }

  50% {
    transform: translateY(-20px) rotate(15deg);
    opacity: 0.14;
  }
}

/* Hero green card */
.gt-green-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;
}

.gt-lawn-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.gt-lawn-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 6px;
}

.gt-lawn-img {
  font-size: 2.2rem;
  text-align: center;
  padding: 16px 10px;
  border-radius: 12px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gt-lawn-img--before {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.gt-lawn-img--after {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.gt-lawn-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gt-lt-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  animation: magicPulse 2s ease-in-out infinite;
}

@keyframes magicPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(199, 0, 126, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(199, 0, 126, 0);
  }
}

.gt-lawn-transform span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 1px;
}

.gt-gc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.gt-gcs-item {
  text-align: center;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.gt-gcs-item--green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.gt-gcs-item span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.gt-gcs-item--green span {
  -webkit-text-fill-color: #4ade80;
  background: none;
}

.gt-gcs-item sup {
  font-size: 0.7rem;
  color: #4ade80;
  vertical-align: super;
}

.gt-gcs-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  margin-top: 3px;
}

.gt-gc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.gt-gc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.55);
}

/* SECTION 1 — services */
.gt-srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.gt-srv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 20px 20px;
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: all 0.4s;
}

.gt-srv-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-pink);
}

.gt-sc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s;
}

.gt-srv-card:hover .gt-sc-icon {
  transform: scale(1.1) rotate(-6deg);
}

.gt-sc-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.gt-srv-card:hover .gt-sc-bar {
  transform: scaleX(1);
}

.gt-srv-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

.gt-srv-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  flex-grow: 1;
}

.gt-sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  transition: all 0.3s;
}

.gt-sc-cta i {
  font-size: 0.68rem;
  transition: transform 0.3s;
}

.gt-srv-card:hover .gt-sc-cta i {
  transform: translateX(5px);
}

/* SECTION 2 — Turf Ownership Model */
.gt-turf-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gt-tm-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gt-tms-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 3px solid #22c55e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.gt-tms-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.gt-tms-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.gt-tms-icon {
  width: 36px;
  height: 36px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #22c55e;
  flex-shrink: 0;
}

.gt-tms-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2px;
}

.gt-tms-item p {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Comparison table */
.gt-model-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(30, 57, 143, 0.1);
  box-shadow: var(--shadow);
}

.gt-model-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 20px;
}

.gt-compare-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(30, 57, 143, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.gt-ct-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--offwhite);
  padding: 10px 14px;
}

.gt-cth {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 4px;
}

.gt-cth--bad {
  color: #ef4444;
}

.gt-cth--good {
  color: #22c55e;
}

.gt-ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 14px;
  border-top: 1px solid rgba(30, 57, 143, 0.06);
  transition: background 0.2s;
}

.gt-ct-row:hover {
  background: rgba(34, 197, 94, 0.03);
}

.gt-ct-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
}

.gt-ct-bad,
.gt-ct-good {
  font-size: 0.74rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.gt-ct-bad {
  color: #ef4444;
}

.gt-ct-good {
  color: #22c55e;
  font-weight: 600;
}

.gt-ct-bad i,
.gt-ct-good i {
  font-size: 0.7rem;
}

/* SECTION 3 — Commercial dark */
.gt-dark-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: blobPulse1 14s ease-in-out infinite;
}

.gt-commercial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.gt-comm-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.gt-comm-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, 0.2);
}

.gt-comm-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.gt-comm-card h3 {
  color: #fff;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
}

.gt-comm-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.77rem;
  line-height: 1.6;
}

/* Seasonal */
.gt-seasonal {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.gt-seasonal h4 {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 20px;
  text-align: center;
}

.gt-seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gt-season-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
}

.gt-season-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.gt-si-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.gt-si-months {
  font-size: 0.68rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.gt-season-item p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1200px) {
  .gt-srv-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gt-commercial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gt-seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .gt-turf-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gt-srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gt-commercial-grid,
  .gt-seasonal-grid {
    grid-template-columns: 1fr;
  }

  .gt-gc-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gt-srv-grid {
    grid-template-columns: 1fr;
  }
}