/* ============================================================
   AFFORDABLE GRASS CUT — STYLESHEET
   ============================================================ */

:root {
  --green:       #2E7D32;
  --green-light: #4CAF50;
  --green-dark:  #1B5E20;
  --green-bg:    #F1F8E9;
  --white:       #FFFFFF;
  --off-white:   #FAFFF7;
  --dark:        #1A1A1A;
  --gray:        #555;
  --light-gray:  #EEF2EA;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); }

.btn-green-solid {
  background: var(--green-light);
  color: var(--white);
}
.btn-green-solid:hover { background: var(--green); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green-bg); }

/* ── Section head ── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.hide-mobile { display: inline; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(46,125,50,0.12);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 16px 24px 20px;
  gap: 14px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}
.nav-mobile-cta {
  background: var(--green);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 8px;
  border-bottom: none !important;
  margin-top: 6px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,10,0.72) 0%,
    rgba(20,60,20,0.50) 60%,
    rgba(10,30,10,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 60px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-phones {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(0,0,0,0.30);
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.2s;
}
.hero-phone-link:hover { background: rgba(0,0,0,0.50); }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-btns .btn-green {
  font-size: 1.05rem;
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(46,125,50,0.4);
}

/* ── Hero body text ── */
.hero-sub--2 {
  margin-top: -10px;
  margin-bottom: 14px;
}
.hero-stars {
  color: rgba(255,255,255,0.95);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
  background: var(--white);
  padding: 60px 0 0;
}
.service-area-header {
  padding-bottom: 32px;
}
.service-area-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.service-area-cities-text {
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.6;
}
.service-area-map {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--light-gray);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}
.trust-icon { font-size: 1.1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 90px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.service-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body {
  padding: 22px 20px 24px;
}
.service-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
}
.service-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 90px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text .eyebrow { margin-bottom: 10px; }
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.about-text > p {
  font-size: 0.97rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.about-list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,40,10,0.82) 0%, rgba(20,80,20,0.70) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 90px 0;
  background: var(--green-bg);
}
.contact-inner { max-width: 960px; margin: 0 auto; }
.contact-cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card--main {
  border: 2px solid var(--green);
}
.contact-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}
.contact-phone {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.contact-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 28px rgba(37,211,102,0.60);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  padding: 40px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-name { color: var(--white); }
.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hide-mobile { display: none; }

  .hero { min-height: 100svh; }
  .hero-phones { gap: 10px; }
  .hero-phone-link { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { text-align: center; }

  .trust-inner { gap: 18px; }
  .trust-item { font-size: 0.82rem; }

  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-img-wrap { height: 220px; }

  .about { padding: 60px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-img { aspect-ratio: 16/9; }

  .cta-banner { padding: 70px 0; }
  .cta-btns { flex-direction: column; align-items: center; }

  .contact { padding: 60px 0; }
  .contact-cards { grid-template-columns: 1fr; }

  .section-head { margin-bottom: 32px; }
  .service-area { padding: 44px 0 0; }
  .service-area-map iframe { height: 300px !important; }
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-content { padding: 40px 20px; }
  .trust-inner { flex-direction: column; gap: 12px; align-items: flex-start; padding: 0 20px; }
  .contact-phone { font-size: 1.3rem; }

  /* Full scene visible on small phones */
  .hero-bg-img { object-position: center top; }
}

@media (max-width: 768px) {
  /* Show full scene on mobile — no excessive zoom */
  .hero-bg-img {
    object-fit: cover;
    object-position: center top;
  }
}
