
:root {
  --primary-green: #2fbf71;
  --dark-green: #1f8f52;
  --accent-lime: #7ed957;
  --light-bg: #f6f8f7;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--light-bg);
  color: #222;
}



/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../images/assets/householdjunkremoval/householdjunkremoval2.jpeg') center/cover no-repeat;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 60, 40, 0.95) 0%,
        rgba(0, 60, 40, 0.85) 40%,
        rgba(0, 60, 40, 0.6) 70%,
        rgba(0, 60, 40, 0.4) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}









.services-section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark-green);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD LINK */
.service-link {
  text-decoration: none;
  color: inherit;
}

/* CARD */
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 35px;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--primary-green);
}

/* ICON */
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(47,191,113,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 26px;
  color: var(--primary-green);
}

/* CONTENT */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .services-section {
    padding: 60px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }
}



.daily-check {
  margin-top: 25px;
  padding: 18px;
  background: #eaf6ef;
  border-radius: 10px;
}

.daily-check h4 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.check-items {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.check-items span {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
}

.check-items i {
  font-size: 14px;
  color: var(--dark-green);
}

