/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}


  
.nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* SCROLL ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;   /* slightly bigger */
  letter-spacing: 0.5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;

}

.phone {
  text-decoration: none;
  color: #22c55e;
  font-weight: 600;
  border: 2px solid #22c55e;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;


}


.phone:hover {
  background: #22c55e;
  color: white;
}

.nav-btn {
  background: #22c55e;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.nav-btn:hover {
  background: #16a34a;
}

/* CONTAINER */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

html {
  scroll-behavior: smooth;
}

/* ALTERNATING BACKGROUND */
section:nth-of-type(even):not(.hero) {
  background: #fafafa;
}

/* HERO */
.hero {
  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.35)
    ),
    url("images/landscape-hero.jpg") center/cover no-repeat;

  color: #fff;
  text-align: center;
  padding: 140px 20px 120px; /* extra top space for navbar */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 5px 30px rgba(0,0,0,0.8);
}

.hero p {
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: #e5e5e5;
}

/* TRUST TEXT */
.hero-trust {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-trust span {
  white-space: nowrap;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(34,197,94,0.5);
}

/* SECTIONS */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

section p {
  color: #666;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
  text-align: left;
}

.service-row img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-row h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-row p {
  color: #555;
}

/* alternate left/right */
.reverse {
  flex-direction: row-reverse;
}



.before-after {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.image-box {
  position: relative;
}

.image-box img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* LABELS */
.label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 999px;
  font-weight: bold;
}

.before {
  background: #ef4444;
  box-shadow: 0 4px 10px rgba(239,68,68,0.4);
}

.after {
  background: #22c55e;
  box-shadow: 0 4px 10px rgba(34,197,94,0.4);
}

/* CAPTION */
.project-caption {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
}

.before-after {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: inline-flex;
}

.before-after {
  gap: 30px;
}

.label {
  font-size: 0.75rem;
  padding: 6px 14px;
}



/* WHY */
.why {
  list-style: none;
  margin-top: 20px;
}

.why li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* IMAGE HOVER EFFECT */
.service-row img,
.image-box img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER (desktop) */
.service-row img:hover,
.image-box img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* TAP (mobile) */
.service-row img:active,
.image-box img:active {
  transform: scale(0.98);
}

/* CONTACT */

.contact {
  text-align: left;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  text-align: left;
}

.contact-left h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-left p {
  margin-bottom: 20px;
  color: #666;
}

.contact-benefits {
  list-style: none;
  padding: 0;
}

.contact-benefits li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* RIGHT SIDE (FORM) */
.contact-right {
  flex: 1;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-right button {
  width: 100%;
  padding: 16px;
  border: none;
  background: #22c55e;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-right button:hover {
  background: #16a34a;
}

.contact-right textarea {
  min-height: 120px;
  resize: none; /* removes drag corner */
}

.contact-right form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  width: 100%;
}


@media (max-width: 768px) {

  .hero {
    padding: 90px 20px;
  }

  .phone {
    background: #22c55e;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }


  .hero-trust {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }



  .hero p {
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
  

  /* 🔥 STACK SERVICES */

  .service-row {
    flex-direction: column;
    text-align: center;
    margin: 40px 0;
    gap: 15px;
  }


  .reverse {
    flex-direction: column;
  }

  .service-row img {
    width: 90%;
    height: 270px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .service-row h3 {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

  .image-box img {
    width: 100%;
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-left {
    text-align: center;
  }
}
