


/* ===== BACKGROUND IMAGE + OVERLAY ===== */
body {
  background-image: url("Photos/backgrounds/background-main-home.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.62) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Keep content above overlay */
body > * {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HERO / HOME
   ========================================================= */
#home {
  min-height: calc(80vh - 86px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 90px 20px 60px;
}

.home-title-items {
  padding: 12px;
  color: #ffffff;
}

.title-home {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 980px;
}

.catch-phrase-home {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 720px;
  opacity: 0.95;
}

/* Trust badges */
.hero-trust {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-trust span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}


/* =========================================================
   SOCIAL BAR
   ========================================================= */
#social-tag-wrapper {
  background-color: #fff;
  padding: 26px 0;
}

#social-tags ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

#social-tags ul li {
  padding: 8px 6px;
}

.social-tags-link img {
  width: 42px;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-tags-link img:hover {
  transform: translateY(-2px) scale(1.06);
  opacity: 1;
}

/* =========================================================
   SERVICES
   ========================================================= */
#services {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 10vh;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  margin: 0 auto;
  max-width: 1300px;
}

.section-title {
  grid-column: 1 / -1;
  font-size: 36px;
  color: #333;
  margin: 20px 0 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #77b254;
  display: inline-block;
  padding-bottom: 10px;
}

.service-card {
  background-color: #ecf9f0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: #d6f1e7;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background-color: #77b254;
  border-radius: 50%;
  padding: 15px;
  display: inline-block;
  object-fit: contain;
}

.service-card h3 {
  font-size: 24px;
  margin-top: 15px;
  color: #77b254;
  font-weight: 600;
  text-transform: capitalize;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: 400;
}

/* More Services strip */
.more-services {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1300px;
  margin: 20px auto 0;
  padding: 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
  border: 1px solid rgba(119, 178, 84, 0.18);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.more-services-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.more-services h3 {
  margin: 0;
  font-size: 20px;
  color: #2b2b2b;
  font-weight: 700;
}

.more-services p {
  margin: 6px 0 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.more-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.more-services-list li {
  background: #ecf9f0;
  border: 1px solid rgba(119, 178, 84, 0.22);
  color: #2e5b1f;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.more-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  background: #77b254;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(119, 178, 84, 0.25);
}

.more-services-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(119, 178, 84, 0.33);
}

/* =========================================================
   ABOUT
   ========================================================= */
#about-section {
  display: flex;
  flex-wrap: wrap;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10vh;
}

.about-left,
.about-right {
  width: 50%;
  height: 100%;
  position: relative;
}

.about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.about-right {
  background-color: #f4f4f4;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  max-width: 520px;
  padding: 80px;
}

#about-section .about-tagline {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f7a25;
  margin-bottom: 12px;
}

#about-section .about-text h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: #0f0f0f;
}

#about-section .about-main {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #2c2c2c;
}

#about-section .about-features {
  margin-bottom: 16px;
  display: grid;
  gap: 10px;
}

#about-section .about-feature {
  font-size: 1rem;
  font-weight: 700;
  color: #1f3b1b;
  padding-left: 20px;
  position: relative;
  line-height: 1.3;
}

#about-section .about-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: #2f7a25;
  box-shadow: 0 0 0 3px rgba(47, 122, 37, 0.15);
}

#about-section .about-close {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 800;
  color: #111;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-section {
  background: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 10vh;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.pricing-intro {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  width: 100%;
  max-width: 280px;
  transition: transform 0.3s ease;
}

.pricing-box:hover {
  transform: translateY(-5px);
}

.pricing-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.pricing-box .price {
  font-size: 2rem;
  color: #77b254;
  margin-bottom: 20px;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #444;
}

.pricing-box ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.pricing-box button {
  background-color: #77b254;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.pricing-box button:hover {
  background-color: #256628;
}

.payment-methods {
  margin-top: 60px;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  text-align: center;
}

.payment-methods h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
  color: #000;
}

.pricing-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 1.1em;
  color: #000;
}

.payment-icons span {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pricing-footnote {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}

.pricing-disclaimer,
.pricing-surcharge {
  max-width: 900px;
  margin: 18px auto;
  background: #f7f7f7;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  border-left: 4px solid #6bbf59;
}

.pricing-surcharge {
  background: #fafafa;
  border-left: 4px solid #8bcf7a;
}

.pricing-conditions-box {
  max-width: 900px;
  margin: 25px auto 0;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.pricing-conditions-box h3 {
  margin: 0 0 10px;
}

.pricing-conditions {
  margin: 0;
  padding-left: 18px;
  color: #555;
  font-size: 14px;
}

.pricing-conditions li {
  margin: 8px 0;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-info a {
  color: #6bbf59;
  text-decoration: none;
  font-weight: 600;
}

.contact-badges {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-badges span {
  background: #f3f8f2;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #4b7f42;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #6bbf59;
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 191, 89, 0.20);
}

.contact-form select {
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%2377b254' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.contact-form button {
  margin-top: 10px;
  background: #6bbf59;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.contact-form button:hover {
  background: #5aa64a;
  transform: translateY(-1px);
}

.contact-note {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/* Hours */
.hours-section {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
}

.hours-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hours-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.hours-list li {
  margin: 8px 0;
}
