/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  --primary-color: #25bb00;
  --hero-bg-color: #242424;
  --text-color: #434343;
  --white-color: #fff;
  --font-family: "Roboto", sans-serif;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --line-height: 1.8;
  --star-color: #ffd700;
  /* Yellow for stars */
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: #f5f5f5;
  line-height: var(--line-height);
  padding-bottom: 80px;
  /* Extra space to prevent sticky content overlap */
}

/* Hero Section */
.hero {
  background: var(--hero-bg-color) no-repeat center center/cover;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.hero-header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.hero-header .logo {
  display: flex;
  align-items: center;
}

.hero-header .logo-icon {
  height: 40px;
  margin-right: 10px;
}

.hero-header .call-button2 {
  margin: unset;
  background-color: unset;
}

.hero-header .company-name {
  font-size: 1.5rem;
}

.hero-header .bold {
  font-weight: 700;
}

.hero-header .geolocation {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 5px;
}

.hero-overlay {
  background-color: rgba(36, 36, 36, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-content {
  max-width: 1024px;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.hero h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.call-button2 {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  max-width: 300px;
  justify-content: center;
}

.call-button2 img {
  margin-right: 10px;
}

.badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.features {
  margin-top: 2rem;
  font-size: 1rem;
}

.hero-icon {
  width: auto;
  height: auto;
}

.features ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  color: var(--white-color);
}

.features li {
  display: flex;
  align-items: center;
}

.features li img {
  margin-right: 10px;
}

.stars {
  font-size: 1.2rem;
  color: var(--star-color);
  margin: 1rem 0;
}

/* Available Now Section */
.available-now {
  background-color: var(--hero-bg-color);
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  position: fixed;
  bottom: -200px;
  width: 100%;
  z-index: 1000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  transition: bottom 0.5s ease-in-out;
}

.available-content {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.available-content p {
  margin: 0;
  width: 50%;
}

.available-content .call-button2 {
  margin-bottom: 0;
  margin-right: 20px;
  min-width: 300px;
}

/* Main Content */
.main-content {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1024px;
  margin: 0 auto;
}

.left-column,
.right-column {
  flex: 1;
  margin: 0 20px;
}

.left-column {
  text-align: center;
}

.left-column h2 {
  margin-bottom: 20px;
}

.image-container {
  position: relative;
  display: inline-block;
}

.left-image {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.left-column .call-button2 {
  display: inline-flex;
  text-align: center;
  bottom: 50px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.right-column h2 {
  color: black;
}

.right-column p {
  margin-bottom: 20px;
}

/* We Remove Section */
.we-remove {
  color: black;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  max-width: 1024px;
  margin: 0 auto;
}

.we-remove ul {
  list-style-type: none;
  padding: 0;
  font-size: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.we-remove li {
  margin-bottom: 10px;
  margin-right: 15px;
  position: relative;
  padding-left: 20px;
}

.we-remove li:not(:first-child):before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .we-remove ul {
    flex-direction: row;
    align-items: flex-start;
  }

  .we-remove li:not(:first-child):before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
  }
}

/* Features Section */
.features-section {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  max-width: 1024px;
  margin: 0 auto;
}

.feature {
  text-align: left;
  flex: 1;
  margin: 0 10px;
  background: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px var(--shadow-color);
}

.feature-icon {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.feature h3 {
  margin-bottom: 10px;
}

/* Removal Process */
.removal-process {
  text-align: center;
  padding: 40px 20px;
  max-width: 1024px;
  margin: 0 auto;
}

.removal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.removal-text {
  text-align: left;
}

.removal-process img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
}

.removal-process p {
  margin-top: 1rem;
}

/* Testimonial */
.testimonial {
  padding: 20px;
  max-width: 1024px;
  margin: 0 auto;
}

.testimonial-content {
  background-color: var(--white-color);
  color: var(--hero-bg-color);
  display: flex;
  text-align: left;
  align-items: center;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px var(--shadow-color);
}

.testimonial img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial .stars {
  font-size: 1.2rem;
  color: var(--star-color);
  margin-bottom: 10px;
}

.testimonial p {
  flex: 1;
  margin-bottom: 1rem;
}

.customer-name {
  font-weight: bold;
}

/* Footer */
footer {
  background: url("img/footer.jpg") no-repeat center center/cover;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  width: 100%;
  margin-top: -120px;
  z-index: -1;
  position: relative;
}

.footer-overlay {
  background-color: rgba(36, 36, 36, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  text-align: center;
  max-width: 1024px;
  margin: auto;
  padding: 20px;
}

.footer h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.footer .call-button2 {
  margin-bottom: 0;
  max-width: 300px;
  display: flex;
  justify-content: center;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero h3 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .call-button2 {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .features ul {
    grid-template-columns: 1fr;
  }

  .main-content {
    flex-direction: column;
    padding: 20px;
  }

  .left-column {
    margin-bottom: 0px;
  }

  .right-column {
    margin: 0;
  }

  .features-section {
    flex-direction: column;
  }

  .feature {
    margin: 10px 0;
  }

  .features li {
    text-align: center;
    margin: 0 auto;
  }

  .testimonial-content {
    flex-direction: column;
  }

  .testimonial img {
    margin-bottom: 10px;
  }

  .removal-content {
    flex-direction: column;
    align-items: center;
  }

  .removal-text {
    text-align: center;
  }

  .available-now {
    flex-direction: column;
    text-align: center;
  }

  .available-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .available-content p {
    width: 100%;
    margin-bottom: 10px;
  }

  .available-content .call-button2 {
    margin-bottom: 20px;
    margin: 0 auto;
    width: 100% !important;
  }

  .available-now {
    padding-bottom: 0px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h3 {
    font-size: 0.9rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .call-button2 {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .features ul {
    gap: 0.5rem;
  }

  .available-now {
    padding-bottom: 0px;
  }
}
