* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  padding: 15px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.logo img {
  max-width: 100%;
}

.mobile-logo {
  display: none;
}

.desktop-logo {
  height: 80px;
}

/* CTA BUTTON */
.cta {
  background: #1f5f2e;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
}

/* HERO */
.hero {
  height: 65vh;
  background: url('images/hero2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  color: #D4D4D4;
  text-align: center;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 30px;
}

.btn {
  background: #014209;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* VALUES */
.values-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.values-header p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.25s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-letter {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #014209;
    color: white;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 1.1em;
}

.value-card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.value-feature {
    grid-column: span 2;
    text-align: left;
    background: white;
    color: #111;
}

.value-feature p {
    max-width: 600px;
    margin: auto;
}

/* CONTACT STRIP */
.contact-strip {
  background: #014209;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.contact-strip h2 {
  margin-bottom: 10px;
}

.contact-strip p {
  margin-bottom: 20px;
}

.contact-strip .btn {
  display: inline-block;
  background: white;
  color: #1f5f2e;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

footer {
  background: #f5f5f5;
  color: #333;
  text-align: center;
  padding: 20px;
}

/* PAGE HEADER - SERVICES*/
.services-hero {
  background: #1f5f2e;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.services-hero h1 {
  margin-bottom: 10px;
}

.services-hero p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-highlight {
  background: #f5f5f5;
  text-align: center;
  padding: 50px 20px;
}

.services-highlight h2 {
  margin-bottom: 10px;
}

.services-highlight p {
  max-width: 700px;
  margin: 0 auto 20px;
}

.services-highlight ul {
  list-style: none;
  padding: 0;
}

.services-highlight li {
  margin-bottom: 8px;
  font-weight: 500;
}

.page-header {
  text-align: center;
  padding: 50px 20px;
}

.page-header h1 {
  font-size: 2.2rem;
}

.services-detailed {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.services-detailed h2 {
  margin: 40px 0 20px;
  text-align: center;
}

.services-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-block h3 {
  margin-top: 20px;
  margin-bottom: 8px;
}

.service-block ul {
  padding-left: 18px;
}

.service-block li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.highlight-note {
  margin-top: 15px;
  font-weight: 600;
}

/* THIN HERO */
.about-hero {
  height: 30vh;
  background: url('images/abouthero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.about-hero h1 {
  position: relative;
  color: white;
  font-size: 2rem;
  text-align: center;
  padding: 0 20px;
}

/* ABOUT SECTIONS */
.about-section {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

/* TEXT */
.about-text {
  max-width: 500px;
}

.about-text h2 {
  margin-bottom: 10px;
}

.about-text p + p {
  margin-top: 12px;
}

/* REVERSE LAYOUT */
.about-section.reverse {
  flex-direction: row-reverse;
}

/* GREEN HERO STRIP */
.contact-hero {
  background: #1f5f2e;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* CONTACT INFO */
.contact-info {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item a {
  color: #1f5f2e;
  text-decoration: none;
}

/* FORM */
.contact-form {
  max-width: 700px;
  margin: 40px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #1f5f2e;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.project-showcase {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.project-showcase h2 {
  text-align: center;
  margin-bottom: 40px;
}

.before-after-card {
  margin-bottom: 80px;
}

.image-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-box {
  position: relative;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.image-box span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.project-info {
  margin-top: 20px;
}

.project-info h3 {
  margin-bottom: 10px;
}

.project-slider {
  max-width: 1000px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.slider-wrapper img {
  max-width: 100%;
  max-height: 700px;
  width: auto;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* BUTTONS */
.slider-btn {
  background: #1f5f2e;
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* THUMBNAILS */
.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumb {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

.thumb:hover {
  opacity: 1;
}

.active-thumb {
  opacity: 1;
  border: 2px solid #1f5f2e;
}

@media (max-width: 768px) {
	.desktop-logo {
	    display: none;
	  }
	
	.mobile-logo {
	    display: block;
	    height: 140px;
	  }
	
	.values-grid {
	        grid-template-columns: 1fr;
	    }
	
	.value-feature {
	        grid-column: span 1;
	    }
	.nav {
	   flex-direction: column;
	   gap: 10px;
	  }

	.services-columns {
       grid-template-columns: 1fr;
  }

     .about-section {
       flex-direction: column;
       text-align: center;
     }

     .about-section.reverse {
       flex-direction: column;
     }

  .image-group {
    grid-template-columns: 1fr;
  }

   .slider-wrapper {
    gap: 5px;
  }

  .slider-btn {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

	 #slider-image {
    max-width: calc(100vw - 100px);
  }

  .thumb {
    width: 65px;
    height: 50px;
  }
}
