:root {
  --primary-color: #7CA66F;
  --secondary-color: #284D1A;
  --accent-color: #16B114;
  --section-color: #f0f0f0;
  --text-color: #222;
  --card-shadow: 0 6px 14px rgba(0,0,0,0.2);
  --card-hover-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ---------------- GENERAL ---------------- */
body {
  margin: 0;
  background-color: white;
  font-family: 'Onest', Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}
.about-content, .pricing-content, .contact-content {
  margin-top: 5vh; /* Adjust based on navbar height */  
  padding: 1%;
  height: 100%;
}

section {
  max-width: 60%;
  margin: 2rem auto;
  padding: 2rem;
}




/* ---------------- NAVBAR ---------------- */

.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  background-color: var(--primary-color);
  z-index: 950; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  box-sizing: border-box;
}

.navbar .title {
  font-size: 2rem;
  color: white;
  margin:0;
}

#menu-icon{
    font-size: 2rem;
    color: var(--section-color);
    cursor: pointer;
    transition: color 0.3s;
}
#menu-icon:hover{
    color: var(--secondary-color);
}


.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  overflow-x: hidden;
  transition: width 0.3s ease;
  z-index: 1000; /* top */
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 15px;
    font-size: 3rem;
    color: var(--section-color);
    text-decoration: none;
    transition: color 0.3s;
}

.sidenav .closebtn:hover{
    color: var(--secondary-color);
}

.nav-options{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 30%;
}

.nav-option{
  text-decoration: none;
  color: var(--section-color);
  font-size: 1.5rem;
}

.nav-option::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-option:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.nav-option:hover::after {
  width: 100%;
}




/* ---------------- HERO SECTIONS ---------------- */
header {
  text-align: center;
  margin-top: 3rem;
}

header h2 {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 0;
}

header p {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
}

.logo {
  max-width: 300px;
  min-width: 200px;
  height: auto;
}

/* ---------------- CARDS / SECTIONS ---------------- */
section {
  background-color: var(--section-color);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 1% 2%;
  margin-top: 1rem;
}

h3 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding:0;
  margin:0;
  text-align: left;
}
/* ---------------- OUR STORY SECTION ---------------- */
.our-story p {
  color: var(--text-color);
  font-size: 1.2rem;
  margin:0;
  margin-left:2%;
  margin-top:1%;
}




/* ---------------- VALUES SECTION ---------------- */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.value-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1% 0;
}

.value-item p{
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
  margin-left: 1%;
  
}

.value-item .check-icon{
  color:#16B114;
  font-weight: bold;
}

.value-title{
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

/* ---------------- SERVICES ---------------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1% 0;
}

.service-item p{
  color: var(--text-color);
  font-size: 1.2rem;
  margin:0;
  margin-left:2%;
}

.service-item #check-icon{
  color:#16B114;
  font-weight: bold;
}

/* ---------------- PRICING CARDS ---------------- */
.price-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.price-card {
  width: 25%;
  background: var(--primary-color);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  color: white;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.price-cards > div:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.price-cards h4 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.price-cards p {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 0;
}

.pricing-content .disclaimer{
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 1rem;
  text-align: center;
}

/* ==========================
   PRICING TABS
========================== */
.pricing-tabs {
  display: inline-flex;
  background: #fff;
  padding: 0.35rem;
  border-radius: 999px;
  box-shadow: var(--card-shadow);
  gap: 0.25rem;
}

.pricing-tab {
  position: relative;
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  text-decoration: none;
  transition: 
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover state */
.pricing-tab:hover {
  background-color: rgba(124, 166, 111, 0.15);
}

/* Active tab */
.pricing-tab.active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: var(--card-hover-shadow);
}

/* Optional focus accessibility */
.pricing-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 177, 20, 0.35);
}

/* ==========================
   MOBILE TWEAKS
========================== */
@media (max-width: 480px) {
  .pricing-tab {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ---------------- BEFORE/AFTER IMAGES ---------------- */

.before-after-section {
  margin-bottom: 2rem;
}
.slideshows {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.slideshow-container {
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: row;
}

.slides-wrapper{
  margin: 0 auto;
  position:relative;
  width: 80%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  background-color: #000;
}


/* Slides */
.mySlides img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Caption text */
.mySlides .text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width:100%;
  text-align: center;
  transform: translateX(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Navigation buttons */
.prev, .next {
  cursor: pointer;
  margin: auto;
  color: var(--accent-color);
  font-weight: bold;
}


/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

/* ---------------- CONTACT ---------------- */
.contact-info{
  margin-top: 10%;
}

.contact-title .phone-icon,
.contact-title .email-icon
{
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.6rem;
}


.contact-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.contact-card {
  width: 40%;
  background: var(--primary-color);
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  height:4rem;

  padding: 1.5rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.contact-title {
  font-size: 1.3rem;
  margin: 1rem 0;
  padding: 0;
  height:0;

}



.contact-cards p {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 0;
  padding: 0;
}

.contact-title{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;

}

/* ---------------- MEDIA QUERIES ---------------- */
/* Extra small devices (phones, portrait) */
/* @media (max-width: 480px) { 

 } */


 @media (max-width: 768px) {
  .price-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price-card{
    width: 60%;
  }

  .price-cards h4{
    font-size: 1.2rem;
  }

  .price-cards p{
    font-size: 1.4rem;
  }

  .contact-card{
    width: 70%;
  }

  .contact-title{
    font-size: 1.2rem;
  }

  .contact-card p{
    font-size: 1.1rem;
  }

  .contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services-done,
  .pricing,
  .contact-info,
  .our-story,
  .values,
  .before-after-section
  {
    max-width: 90%;
  }

  .slidenav
  {
    width: 70%;
  }

  .navbar .title{
    font-size: 1.8rem;
  }
  header h2{
    font-size:1.8rem;
  }

  header p{
    font-size: 1.3rem;
  }

  h3{
    font-size: 1.5rem;
  }

  .services-done p{
    font-size: 1.1rem;
  }


  .value-item{
    flex-direction: column;
    align-items: flex-start;
  }

/* Disable hover movement on touch */
.nav-option:hover {
  transform: none;
}

/* Base underline animation setup */
.nav-option::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

/* When tapped/focused */
.nav-option:focus {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.nav-option:focus::after {
  width: 100%;
}


} 


/* Medium devices (tablets) */
@media (max-width: 992px) { 
  .services-done,
  .pricing,
  .contact-info,
  .our-story,
  .values,
  .before-after-section
  {
    max-width: 80%;
  }

  .price-cards{
    flex-direction: row;
  }
 }


 /* Large devices (small laptops) */
@media (max-width: 1200px) { 
  .services-done,
  .pricing,
  .contact-info,
  .our-story,
  .values,
  .before-after-section
  {
    max-width: 80%;
  }
 }
 
/* Extra large devices (large laptops & desktops) */
/* @media (max-width: 1400px) { ... } */







