/* === GLOBAL STYLES === */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f9fafb;
  color: #111;
}

a {
  text-decoration: none;
  color: #00833e;
}

/* HEADER */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.home-icon {
  font-size: 24px;
  color: #00833e;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0,131,62,0.6), rgba(0,131,62,0.6)), 
              url('https://reyespazinimastercleanllc.com/wp-content/uploads/2025/10/flooring-768x1024.jpeg') center/cover no-repeat;
  color: white;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

/* ABOUT SECTION */
.about {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  color: #00833e;
  margin-bottom: 20px;
}

.about p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

/* CTA FORM */
.cta {
  background: #f0f4f3;
  padding: 60px 20px;
  text-align: center;
}

.cta-box {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: inline-block;
}

.cta h2 {
  color: #00833e;
  margin-bottom: 12px;
}

.cta form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cta input {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.cta button {
  background: #00833e;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta button:hover {
  background: #006a33;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 10px;
}

.footer-menu {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #ccc;
  margin: 0 10px;
  font-size: 14px;
}

.footer-menu a:hover {
  color: #00833e;
}
