/* ================================ GENERAL STYLES ================================ */

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
}




/* ================================ HERO ================================ */

.hero-container {
  position: relative;
  width: 100%;
  height: 650px;  /* Control the height */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

/* ================================ LOGO AREA (STONE BACKGROUND) ================================ */

.header-top {
  text-align: center;
  padding: 20px 0;
  background-image: url("../images/stone-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-logo img {
  display: block;
  margin: 0 auto;
  width: 180px;
  padding: 0;
  border-radius: 0;
  box-shadow: 0px;
}

/* ================================ NAVIGATION ================================ */

.header-nav {
  background: #25343f;
  padding: 20px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu a:hover {
  opacity: .8;
}

/* ================================ BUTTON ================================ */

/* Default visibility on larger screens */
.header-nav .cta-button {
  display: inline-block;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .header-nav .cta-button {
    display: none;
  }
}

.header-nav .cta-button {
  background: #c39961 !important;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* ================================ FOOTER ================================ */

footer {
  background: #25343f;
  color: #fff;
  padding: 14px 0;
}

footer .header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .header-booking {
  font-size: 14px;
  line-height: 1.4;
}

footer .header-search input {
  padding: 0.75rem 2.8rem;
}

footer .header-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #25343F;
}

footer .lh-landscaping-nav a {
  font-size: 14px;
}

/* ================================ HERO IMAGE SLIDESHOW ================================ */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  z-index: 10;
  cursor: pointer;
  padding: 1rem;
}

#prev {
  left: 20px;
}

#next {
  right: 20px;
}

.services h2 {
  color: #c39961;
}

/* ================================ BEFORE & AFTER SLIDER ================================ */

.before-after-section {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #c39961;
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: inset(0 50% 0 0);
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 100%;
  background-color: #c39961;
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

/* Slider Bar (Orange Line) */
.slider-bar {
  width: 100%;
  height: 100%;
  background: rgba(255, 165, 0, 0.6);
}

/* Optional: labels for Before and After */
.before-image-container:before {
  content: "Before";
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.after-image-container:after {
  content: "After";
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* ================================
 About-us page
================================ */

.about-us {
  padding: 60px 0;
}

.about-us .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.about-text {
  flex: 1;
  padding-right: 30px;
}

.about-text h1 {
  margin-bottom: 20px;
  font-size: 36px;
  color: #c39961;
}

.about-text h2 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 500;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

.about-image {
  flex: 1;
  text-align: center;
  max-width: 500px;
  border: 2px solid #ccc;
  background-color: #f0f0f0;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #888;
  margin-top: 130px; 
}

.about-image img {
  display: none;
}

/* Footer spacing */
footer {
  padding: 40px 0;
  background-color: #333;
  color: #fff;
  text-align: center;
}

/* ================================
 Services page
================================ */

.services-hero {
  background: url("../assets/images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #c39961;
  text-align: center;
  padding: 60px 0;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* CTA Button */

.cta-button {
  background:#c39961 !important;
  color:#fff !important;
  padding:12px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}

.cta-button:hover {
  background-color: #c39961 ;
}

/* Services Section */

.services {
  padding: 60px 0;
}

.service-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.service-item {
  flex: 1 1 30%;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item h2 {
  font-size: 1.6rem;
  margin-top: 10px;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

/* Icons */

.service-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon img {
  width: 50px;
  height: 50px;
}




/* ===========================================
   CONTACT PAGE
=========================================== */

/* PAGE CONTAINER */

.contact-section{
  max-width:1400px;
  margin:0 auto;
  padding:80px 40px;
  width:92%;
  }
  
  
  /* ===========================================
     BUSINESS HOURS
  =========================================== */
  
  .business-hours-section{
  text-align:center;
  margin-bottom:70px;
  }
  
  .hours-title{
  font-size:20px;
  letter-spacing:2px;
  color:#c39961;
  margin-bottom:35px;
  }
  
  .hours-wrapper{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:45px;
  }
  
  .hours-wrapper div{
  padding:0 25px;
  border-right:1px dashed rgba(0,0,0,0.2);
  font-weight:500;
  }
  
  .hours-wrapper div:last-child{
  border-right:none;
  }
  
  .hours-wrapper span{
  display:block;
  margin-top:6px;
  font-weight:400;
  color:#555;
  }
  
  
  /* ===========================================
     PAGE TITLE
  =========================================== */
  
  .page-title{
  text-align:center;
  font-size:42px;
  color:#c39961;
  margin:80px 0 80px 0;
  font-weight:600;
  }
  
  
  /* ===========================================
     CONTACT LAYOUT
  =========================================== */
  
  .contact-layout{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:120px;
  max-width:1300px;
  margin:0 auto;
  width:100%;
  }
  
  
  /* ===========================================
     CONTACT FORM
  =========================================== */
  
  .custom-contact-form{
  flex:1;
  max-width:560px;
  display:flex;
  flex-direction:column;
  gap:32px;
  }
  
  .custom-contact-form label{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
  display:block;
  }
  
  .form-control{
  width:100%;
  padding:20px;
  border-radius:16px;
  border:none;
  background:#e9e9e9;
  font-size:16px;
  }
  
  textarea.form-control{
  min-height:200px;
  resize:vertical;
  }
  
  .send-btn{
  background:#c39961;
  color:white;
  padding:16px 35px;
  border:none;
  border-radius:12px;
  font-size:16px;
  cursor:pointer;
  margin-top:10px;
  transition:0.25s ease;
  }
  
  .send-btn:hover{
  background:#b2874e;
  }
  
  
  /* ===========================================
     CONTACT INFO
  =========================================== */
  
  .contact-right{
  flex:1;
  max-width:560px;
  display:flex;
  flex-direction:column;
  gap:50px;
  }
  
  .contact-item{
  display:flex;
  align-items:center;
  gap:30px;
  }
  
  .icon-box{
  width:72px;
  height:72px;
  background:#e9e9e9;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  }
  
  .icon-box i{
  font-size:22px;
  color:#111;
  }
  
  .contact-text{
  font-size:18px;
  color:#111;
  }
  
  .contact-text a{
  text-decoration:none;
  color:#111;
  }
  
  .phone-link{
  color:#c39961;
  font-weight:600;
  }
  
  
  /* ===========================================
     MAP
  =========================================== */
  
  .leaflet-map-section{
  margin-top:80px;
  }
  
  #map{
  width:100%;
  height:420px;
  border-radius:10px;
  }
  
  

/* ================================ Reviews ================================ */

.reviews-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.reviews-section h1 {
  color: #c39961;
  margin-bottom: 10px;
}

.reviews-section p {
  margin-bottom: 50px;
  color: #555;
}


/* ================= Swiper Container ================= */

.reviews-slider {
  position: relative;
  padding: 20px 40px;
}


/* ================= Swiper Wrapper ================= */

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}


/* ================= Review Card ================= */

.review-tile {
  background: #333;
  color: white;
  border-radius: 12px;
  padding: 25px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform .3s ease;
}

.review-tile:hover {
  transform: translateY(-6px);
}


/* ================= Reviewer Image ================= */

.review-image {
  width: 60px;
  height: 60px;
  background: #e9e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* Center the logo */
}

.company-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}


/* ================= Review Text ================= */

.review-author {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.review-date {
  font-size: 14px;
  color: white;
}

.review-rating {
  font-size: 16px;
}

/* ================= Stars Styling ================= */

.review-rating span {
  color: #ffcc00; /* Gold stars */
}


/* ================= Force Text to White ================= */

.review-tile h1,
.review-tile h2,
.review-tile h3,
.review-tile h4,
.review-tile h5,
.review-tile p,
.review-tile span {
  color: #fff !important;
}


/* ================= Google Link ================= */

.google-link {
  text-align: center;
  margin-top: 40px;
}


/* ================================ Swiper Arrows ================================ */

.swiper-button-next,
.swiper-button-prev {
  color: #c39961;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 28px;
  font-weight: bold;
}

/* Google Reviews Button */
.google-reviews-btn {
  background-color: #c39961;  /* Google Blue */
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.google-reviews-btn:hover {
  background-color: #c39961;  /* Darker Google Blue on hover */
}
/* ===========================================
   Projects Section
=========================================== */

.projects-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.projects-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
  color: #c39961;
}

/* Grid layout */
#project-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.ynw-project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.ynw-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Image */
.ynw-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ccc; /* Adding a border below the image for separation */
}

/* Card body */
.ynw-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Title */
.ynw-card-title {
  font-size: 20px;
  font-weight: 600;
}

/* Project type */
.project-type {
  font-size: 14px;
  color: #777;
}

/* Location bar */
.project-location {
  background: #eeeeee;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* Button */
.ynw-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #c39961;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.ynw-btn:hover {
  background: #b2874e;
}

/* ================================
   MOBILE RESPONSIVE
================================= */

/* On smaller screens, adjust the grid to be 1 column */
@media (max-width: 768px) {
  #project-results {
    grid-template-columns: 1fr; /* Stack cards in a single column */
    gap: 20px; /* Reduce space between cards */
  }

  .ynw-project-card {
    padding: 16px; /* Reduce padding on smaller screens */
  }

  .ynw-card-body {
    padding: 16px; /* Make the body padding consistent with the card */
  }

  .ynw-card-title {
    font-size: 18px; /* Slightly smaller font on mobile */
  }

  .project-location {
    font-size: 12px; /* Smaller font size for location */
  }

  .ynw-btn {
    font-size: 12px; /* Adjust button text size */
    padding: 8px 12px; /* Adjust button padding */
  }
}

/* On very small screens (less than 480px), reduce card size further */
@media (max-width: 480px) {
  .ynw-project-card {
    max-width: 90%; /* Make the cards a bit smaller */
    margin: 0 auto; /* Center the cards */
  }
}
 
/* ===========================================
   Single Project
=========================================== */

.single-project{
  padding:80px 0;
  }
  
  .single-project-title{
  text-align:center;
  font-size:38px;
  margin-bottom:40px;
  }
  
  .single-project-image img{
  width:100%;
  max-width:900px;
  display:block;
  margin:0 auto 40px auto;
  border-radius:10px;
  }
  
  /* WRAPPER so everything aligns */
  
  .project-content-wrap{
  max-width:900px;
  margin:auto;
  }
  
  /* LOCATION BAR */
  
  .project-location{
  background:#e5e5e5;
  padding:12px 18px;
  margin:25px 0;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:6px;
  }
  
  /* TEXT */
  
  .single-project-content{
  max-width:900px;
  margin:0 auto 30px auto;
  line-height:1.7;
  font-size:16px;
  }
  
  /* VIDEO */
  
  .project-video{
  max-width:900px;
  margin:0 auto 40px auto;
  }
  
  .project-video iframe{
  width:100%;
  height:450px;
  border-radius:8px;
  }
  
  /* GALLERY */
  
  .project-gallery{
  position:relative;
  max-width:900px;
  margin:40px auto;
  overflow:hidden;
  }
  
  .gallery-slider{
  display:flex;
  transition:transform .4s ease;
  }
  
  .gallery-slider img{
  width:100%;
  flex-shrink:0;
  border-radius:10px;
  }
  
  .gallery-prev,
  .gallery-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.6);
  color:white;
  border:none;
  font-size:24px;
  padding:10px 15px;
  cursor:pointer;
  border-radius:6px;
  }
  
  .gallery-prev{ left:10px; }
  .gallery-next{ right:10px; }
/* ===========================================
       MOBILE NAVIGATION
    =========================================== */
    
    .mobile-menu-toggle{
      display:none;
      font-size:28px;
      background:none;
      border:none;
      color:white;
      cursor:pointer;
      }
      
      .mobile-menu{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:#25343f;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      gap:35px;
      z-index:9999;
      transform:translateY(-100%);
      transition:.35s ease;
      }
      
      .mobile-menu.active{
      transform:translateY(0);
      }
      
      .mobile-nav-menu{
      list-style:none;
      margin:0;
      padding:0;
      text-align:center;
      }
      
      .mobile-nav-menu li{
      margin:18px 0;
      }
      
      .mobile-nav-menu a{
      color:white;
      font-size:26px;
      text-decoration:none;
      letter-spacing:2px;
      text-transform:uppercase;
      }
      
      .mobile-close{
      position:absolute;
      top:30px;
      right:30px;
      font-size:30px;
      background:none;
      border:none;
      color:white;
      cursor:pointer;
      }
      
      .mobile-cta{
      margin-top:25px;
      display:none;
      }
      
      /* ===========================================
         MOBILE RESPONSIVE
      =========================================== */
      
      @media (max-width:768px){
      
      .nav-links{
      display:none;
      }
      
      .mobile-menu-toggle{
      display:block;
      }
      
      .mobile-cta{
      display:inline-block;
      }
      
      .nav-container{
      justify-content:space-between;
      }
      
      .contact-layout{
      flex-direction:column;
      gap:40px;
      }
      
      .custom-contact-form,
      .contact-right{
      flex:100%;
      padding-left:0;
      }
      
      .contact-item{
      align-items:flex-start;
      }
      
      }
    