:root{
      --btaccent:#00a98f; /* green */
      --accent-dark:#039b63;
      --text:#ffffff;
      --overlay:rgba(10,11,12,0.55);
      --max-width:1100px;
      --radius:40px;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
        --bg: #eef6f9;            /* page background */
      --muted: #464c66;         /* heading + text */
      --card-dark: #464c66;     /* right card background */
      --card-white: #ffffff;    /* left card background */
      --accent: #f2f3f7;        /* left column inner bg (subtle) */
      --badge-bg: rgba(255,255,255,0.95);
      --circle-bg: #464c66;     /* icon circle */
      --circle-fg: #ffffff;
      --shadow: 0 6px 22px rgba(26,41,61,0.06);
      --radius: 10px;
      font-family: "Montserrat", sans-serif;
    }

    *{box-sizing:border-box}
    body,html{height:100%;
      margin:0;
     font-family: "Montserrat", sans-serif;
    }

/* .montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

    .quality-wood-wrapper{background-color: #474d66; padding-top: 100px; padding-bottom: 100px;}
    .hero{
      min-height:80vh;
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      color:var(--text);
      background:#111 url('../images/landing-header.jpg') center/cover no-repeat;
    }

    /* subtle dark overlay + gradient to emphasize text on left */
    .hero::before{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(90deg, rgba(10,11,12,0.65) 0%, rgba(10,11,12,0.35) 35%, rgba(10,11,12,0.12) 60%, rgba(10,11,12,0.32) 100%);
      pointer-events:none;
    }

    .hero-container{
      /* width:100%; */
      max-width:var(--max-width);
      padding:280px 24px;
      position:relative;
      z-index:1;
    }

    .hero-grid{
      display:flex;
      align-items:center;
      justify-content:flex-start;
      gap:40px;
    }

    .hero-content{
      /* max-width:640px; */
      text-align: center;
    }



@keyframes fadeTopToBottom {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*     .lnd-title{
    
      font-size:clamp(28px,4.5vw,45px);
      line-height:60px;
      font-weight:800;
      letter-spacing:-0.02em;
      margin-bottom: 0px;
      color:var(--text);
    
    } */

    .lnd-title {
  font-size: clamp(32px, 4.5vw, 45px);
  line-height: 60px;
  width:600px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0px;
  color: var(--text);

  /* Animation */
  opacity: 0;
  animation: fadeTopToBottom 1s ease forwards;
  animation-delay: 0.3s; /* optional: delay for sequencing */
}



@keyframes fadeTopToBottom {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


p.lead {
  margin: 0 0 0px 0;
  margin-top: 15px;
  font-size: clamp(20px, 1.7vw, 30px);
  opacity: 0.95;
  font-weight: 500;
  color: white;

  /* Animation */
  opacity: 0;
  animation: fadeTopToBottom 1s ease forwards;
  animation-delay: 0.6s; /* slightly later than .lnd-title for sequence */
}

    .cta-row{
    /*   display:flex; */
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }

@keyframes fadeTopToBottom {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    .gt-off {
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 80px;

  /* Animation */
  opacity: 0;
  animation: fadeTopToBottom 1s ease forwards;
  animation-delay: 0.9s; /* comes after p.lead */
}


@keyframes bounceHover {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-6px); }
  60%  { transform: translateY(3px); }
  80%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}




.btn-cst {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btaccent);
  border: none;
  color: var(--text);
  padding: 25px 35px;
  font-weight: 400;
  font-size: 20px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(6, 177, 122, 0.18);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .2s ease, background .2s ease;
}

.btn-cst:hover {
  animation: bounceHover 0.5s ease;
	color:#fff;
  box-shadow: 0 14px 28px rgba(6, 177, 122, 0.25);
}



/*     .btn-cst{
      display:inline-flex;
      align-items:center;
      justify-content:center;
            background:var(--btaccent);
      border:none;
      color:var(--text);
            padding: 25px 35px 25px 35px;
      font-weight:400;
      font-size:20px;
      border-radius:50px;
      box-shadow:0 8px 24px rgba(6,177,122,0.18);
      text-decoration:none;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease;
    }
    
    .btn-cst:hover{box-shadow:0 14px 36px rgba(6,177,122,0.22)} */
.btn-cst:active{transform:translateY(1px)}
    .btn .price{background:var(--text);color:#111;padding:6px 10px;border-radius:6px;font-weight:800}

    /* secondary subtle action for accessibility */
    .btn-ghost{
      background:transparent;border:2px solid rgba(255,255,255,0.12);padding:10px 18px;border-radius:999px;color:var(--text);font-weight:600;
    }

    /* small layout for very small screens */
 


    /* Second Section*/


    .page {
      min-height:100vh;
      display:flex;
      align-items:flex-start;
      justify-content:center;
      padding:100px 0px 0px;
      box-sizing:border-box;
      background-color: #f2f8f9;
      
    }

    h1.page-title{
      width:100%;
      text-align:center;
      margin:0 0 65px;
      font-size: 40px;
     
      font-weight:700;
      color:var(--muted);
      letter-spacing:0.2px;
    }

    /* Main wrapper */
    .card-wrap{
      width:1075px;
      max-width:100%;
      height: 560px;
      display:flex;
      justify-content:center;
      gap:0;
      box-sizing:border-box;
    }

    /* The combined card that looks like two panels fused */
    .combined {
      display:flex;
      width:100%;
      border-radius:12px;
      overflow:hidden;
      align-items:stretch;
      box-shadow:var(--shadow);
    }

    /* Left column (white) */
    .left {
      background:var(--card-white);
      padding:40px 50px;
      width:50%;
      box-sizing:border-box;
      display:flex;
      flex-direction:column;
      gap:24px;
      justify-content:center;
    }

    .left .inner-title{
      font-size:24px;
      margin:0 0 10px;
      font-weight:700;
      color: #464c66;
    }

    .benefits {
      display:flex;
      flex-direction:column;
      gap:50px;
      margin-top:8px;
    }

    .benefit {
      display:flex;
      gap:18px;
      align-items:flex-start;
    }

    .benefit .icon {
      min-width:50px;
      min-height:50px;
      border-radius:50%;
      background:var(--circle-bg);
      color:var(--circle-fg);
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
      box-shadow: 0 2px 6px rgba(11,14,20,0.08) inset;
    }

    .benefit .icon svg{ width:26px; height:26px; display:block; }

    .benefit .text {
      display:flex;
      flex-direction:column;
      gap:6px;
    }

    .benefit .text .title{
      font-weight:700;
      font-size:15px;
      color:#464c66;
    }

    .benefit .text .desc{
      font-weight:500;
      color:#464c66;
      font-size:14px;
      line-height:1.45;
      /* max-width:420px; */
    }

    /* Right column (dark) */
    .right {
      background:var(--card-dark);
      width:50%;
      padding:50px;
      box-sizing:border-box;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      gap:18px;
    }

    .image-wrap{
      position:relative;
      border-radius:10px;
      overflow:hidden;
      /* background:linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.06)); */
      padding:12px; /* small frame around image */
    }

    .image-frame{
      width:100%;
      height:360px;
      border-radius:8px;
      overflow:hidden;
      position:relative;
      background:#222;
      display:block;
    }

    .image-frame img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* two small badges like the reference */
    .badge-left, .badge-right {
      position:absolute;
      top:14px;
      padding:8px 12px;
      font-size:12px;
      font-weight:600;
      border-radius:12px;
      background:var(--badge-bg);
      color:#2c2f37;
      box-shadow:0 2px 6px rgba(19,21,26,0.12);
      white-space:nowrap;
      backdrop-filter: blur(2px);
    }
    .badge-left { left:18px; }
    .badge-right { right:18px; }

    .about {
      padding:12px 6px 6px 6px;
    }

    .about h3{
      margin:0 0 8px 0;
      font-size:15px;
      font-weight:700;
      color:#fff;
    }

    .about p{
      margin:0;
      color: #dbe0e9;
      font-size:13px;
      line-height:1.5;
      opacity:0.95;
    }

    /* Responsive adjustments */
    @media (max-width:980px){
      .combined{ flex-direction:column; width:100%; }
      .left, .right{
        width:100%;
      }
      .image-frame{ height:260px; }
      .left{ padding:28px; }
      .right{ padding:20px; }
    }

  


    /* Third Section */

.hg-qt{
  font-size: 40px !important;
  font-weight: 700;
  color: #fff;
}

.prod-wrap{margin-top: 132px;}

    .container-wood {
      max-width: 1275px;
      margin: auto;
      padding: 100px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .text-center-ct{
      text-align: center;
      margin-bottom: 0px;
      animation: fadeDown 1s ease-in-out;
      color: #fff;;
    }

    .text-center h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .hg-qt-p {
      font-size: 14px;
      line-height: 1.6;
      max-width: 800px;
      margin: auto;
      color: #ddd;
    }

    /* Left product grid */
    .left-wood {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px 20px;
      animation: slideLeft 1s ease-in-out;
    }

    .product-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .product-img {
      background: white;
      border-radius: 12px;
      min-width: 192px;
    min-height: 228px;
      padding: 20px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .product-img:hover {
      transform: translateY(-5px);
    }

    .product-img img {
     /*  max-width: 120px; */
     width: 100%;
      height: auto;
      display: block;
      margin: auto;
    }

    .pro-bx-ct{
width: 100%;
    padding-left: 30px;
    display: flex
;

    }
    .product-name {
      margin-top: 10px;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 80px;
      text-align: left;
      color: #fff;
      line-height: 1.4;
    }

    .right-wood {
      animation: slideRight 1s ease-in-out;
      margin-top: 40px;
    }

    .fence-img img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .colors {
      margin-top: 20px;
    }

    .colors h3 {
      margin-bottom: 25px;
      margin-bottom: 25px;
      font-size: 18px;
      color: #fff;
    }

    .swatches {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
    }

    .swatch {
      padding: 20px;
      border-radius: 10px;
      color: white;
      font-size: 13px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      text-align: left;
    }
        

    /* Example colors */
    .charwood { background: #4a2e22; background-image: url(../images/char-wood.jpg); width: 134px; height: 123px;font-size: 14px; font-weight: 400;margin-bottom: 30px; background-repeat:no-repeat}
    .banyan { background: #a56a36; background-image: url(../images/Banyan.jpg); width: 134px; height: 123px; font-size: 14px; font-weight: 400;margin-bottom: 30px; background-repeat:no-repeat}
    .riverwood { background: #6b3b2c; background-image: url(../images/river-wood.jpg); width: 134px; height: 123px; font-size: 14px; font-weight: 400;margin-bottom: 30px; background-repeat:no-repeat} 
    .redwood { background: #c2622d; background-image: url(../images/red-wood.jpg); width: 134px; height: 123px; font-size: 14px; font-weight: 400;margin-bottom: 30px; background-repeat:no-repeat}
    .pineneedle { background: #2f4b3a; background-image: url(../images/pinenedle.png); width: 134px; height: 123px; font-size: 14px; font-weight: 400;margin-bottom: 30px; background-repeat:no-repeat}
    .beige { background: #d5c9b2;  background-image: url(../images/summerhouse.png); width: 134px; height: 123px; font-size: 14px; font-weight: 400;margin-bottom: 30px; background-repeat:no-repeat}

    /* Animations */
    @keyframes slideLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      .container {
        grid-template-columns: 1fr;
      }
      .left-wood {
        grid-template-columns: 1fr; /* stack in mobile */
      }
    }




    /* Fourth Section*/


    .container-process {
            max-width: 1200px;
            margin: 0 auto;
            padding: 150px 0px 150px; 
        }

        
.proc-title{    font-size: 40px;
    color: #464c66;
    text-align: center;
  margin-top: 0px;
  margin-bottom: 80px !important;
  }
       

        .process-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .step-card {
            background-color: #f2f8f9;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 15px;
            text-align: center;
            width: 100%;
            max-width: 220px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .icon-circle {
            width: 77px;
            height: 77px;
            background-color: #00a98f;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
        }

        .step-title {
            font-size: 14px;
            font-weight: bold;
            color: #464c66;
            margin-bottom: 10px;
        }

        .step-description {
            font-size: 0.8em;
            color: #666;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .process-grid {
                flex-direction: column;
                align-items: center;
            }
            .step-card {
                max-width: 300px;
            }
        }

        @media (min-width: 1024px) {
            .process-grid {
                flex-wrap: nowrap;
            }
        }

/* ================== Mobile: 2 cards per row ================== */
@media (max-width: 600px) {
  .container-process {
    padding: 60px 12px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 fixed columns */
    gap: 25px;
    justify-items: center; /* keep cards centered */
    margin-left:20px;
    margin-right:20px;
  }

  .step-card {
    max-width: 220px; /* keep your card size */
    width: 100%;
    height:250px;
  }

  /* Center the last (odd) card */
  .process-grid .step-card:last-child {
    grid-column: 1 / -1;   /* span across both columns */
    justify-self: center;  /* center in the row */
  }
}



        /* Fifth Section */

.fence-care-wrapper{

background-color: #464c66;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-bottom: 150px;
          padding-top: 100px;
           /*  min-height: 100vh;
            padding: 20px; */


}
          .after-care-container {
            max-width: 1275px;
            width: 100%;
           /*  border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            padding: 40px; */
            text-align: center;
        }

        .after-care-container h1 {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 90px;
            margin-top: 0px;
            color: white;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 35px;
            align-items: center;
        }

        .image-box img {
            width: 100%;
            height: 510px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .tips-box {
            background-color: white;
            padding: 60px;
            height: 510px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
        }
        
        .tips-box h2 {
                font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #464c66;
        }
        
        .tips-box p {
            font-size: 16px;
            font-weight: 400;
            color: #464c66;
            margin-bottom: 40px;
            margin-top: 0px;
        }
        
        .tips-box p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .tips-box {
                margin-top: 20px;
            }
        }


        /* sixth section */

        .annual-care-wrapper{background-color: #464c66;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;}

         .care-plan-container {
            max-width: 1275px;
            width: 100%;
          /*   background-color: #515b7e; */
            border-radius: 12px;
           /*  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
            padding: 0px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }

        .image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0px;
            position: relative;
        }

        .image-grid img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .image-label {
            position: absolute;
            font-size: 2em;
            font-weight: bold;
            background-color: #464c66;
            color: white;
            /* border: 2px solid white; */
            border-radius: 50%;
            width: 138px;
            height: 138px;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .text-content {
            text-align: left;
        }


        
        .text-content h1 {
           /*  font-size: 1.8em;
            font-weight: bold;
            margin-bottom: 10px; */
            color:white;
        }

        .text-content p {
          /*   font-size: 0.9em;
            color: #d1d5db;
            margin-bottom: 20px; */
            color:white;
        }

        .plan-list {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
        }

        .plan-list li {
            font-size: 1em;
            margin-bottom: 20px;
            position: relative;
            padding-left: 25px;
        }

        .plan-list li::before {
            content: '';
            color: #4CAF50;
            position: absolute;
           background-image: url(../images/bullet-gre.png);
           background-repeat: no-repeat;
               width: 20px;
            height: 20px;
            left: 0;
            top: 0;
            font-weight: bold;
        }
        
        .red-section {
           /*  background-color: #e53e3e; */
            padding: 0px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: left;
        }

        .special-offer {
            /* font-style: italic; */
            font-size: 0.9em;
            color: #d1d5db;
        }
        
        @media (max-width: 768px) {
            .care-plan-container {
                grid-template-columns: 1fr;
            }
            .image-grid {
               /*  grid-template-columns: 4fr; */
            }
            .text-content {
                text-align: center;
                margin-top: 20px;
            }
            .plan-list {
                text-align: left;
            }
        }

.fence-off{
font-size:25px; color:#464c66; margin-top: 0px; margin-bottom: 20px;
}

.fence-p{
font-size: 18px; color: #464c66; font-weight: 500;

}

        /* Sixth Section */

          .cta-container {
            width: 100%;
            height: 400px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
           /*  border-radius: 12px; */
           /*  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           /*  background: rgba(62, 70, 100, 0.8); */
            z-index: 1;
        }
        
        .cta-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            padding: 20px;
        }


      /*   .cta-content h1 {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        } */

          .cta-content h1
          {
              font-size: 45px;
              font-weight: bold;
              width:900px;
              margin-bottom: 50px;
              margin-top: 0px;
              color: #fff;
              /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
          }

/* 
        .cta-button {
            background-color: #00BFA5;
            color: white;
            border: none;
            border-radius: 9999px;
            padding: 15px 30px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
        } */


.cta-button {
    background-color: #00BFA5;
    color: white;
    border: none;
    border-radius: 10px;
        padding: 30px 50px 30px 50px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s 
ease;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.qt-form{
  background-color: #f2f8f9; padding: 100px; text-align: center;
}


.testimonial-box {
    height: 100%;
    visibility: visible !important;}


.testimonial-slider-wp {
    height: 100%;
    visibility: visible !important;
}





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

        .cta-button svg {
            margin-left: 10px;
        }

        .subtext {
            font-size: 18px;
            margin-top: 15px;
            color: #fff;
        }

        @media (max-width: 768px) {
            .cta-content h1 {
                font-size: 1.5em;
                width:100%;
            }
        }




   @media (max-width:720px){
      .container{padding:28px 18px}
      h1{font-size:26px}
      .hero{min-height:45vh}
    .hero-container{
     padding:25px 25px;
   
    }

.quality-wood-wrapper{
padding-top: 25px; padding-bottom: 25px;  
}
.container-process{
  padding: 50px 0px 50px; 

}
.fence-care-wrapper{
 padding-bottom: 50px;
          padding-top: 50px;

}

.tips-box{
  margin:20px;
  margin-top: 0px;
}

.image-box
 {
    margin: 20px;
}

.after-care-container h1{
margin-bottom:20px;
font-size:25px;

}

.qt-form{
padding: 20px;


}

.proc-title{

  font-size: 30px;
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 20px !important;
}


    }


    /* 📱 Mobile Responsive Fix */
@media (max-width: 768px) {
  .container-wood {
    grid-template-columns: 1fr;
    padding: 40px 15px;
    gap: 30px;
  }

  .left-wood {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prod-wrap {
    margin-top: 0; /* remove big offset for mobile */
  }

  .product-img {
    min-width: auto;
    min-height: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .product-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .right-wood {
    margin-top: 0;
  }

  .colors h3 {
    font-size: 20px;
    text-align: center;
  }

  .swatches {
    grid-template-columns: 1fr 1fr; /* 2 per row on mobile */
    gap: 10px;
  }

  .swatch {
    font-size: 12px;
    padding: 15px;
  }
}

/* ===== Mobile: 2 products per row with text under image ===== */
@media (max-width: 600px) {
  .left-wood {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;
  }

  /* Make each image + text act as one block */
  .product-img {
    display: block;
  }

  .product-img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Attach the text directly under its image */
  .pro-bx-ct {
    text-align: center;
    margin-top: 8px;
    grid-column: auto / span 1; /* keep it under the image */
  }

  /* Force each image+text pair to stack in one cell */
  .product-img,
  .pro-bx-ct {
    display: block;
  }
  .product-img + .pro-bx-ct {
    margin-bottom: 16px; /* spacing between products */
  }
  .product-name{
margin-bottom: 0px;

  }
}


  .wpcf7 {
    width: 850px;
    margin: auto;
}

span.wpcf7-form-control-wrap {
    text-align: left;
}

span.wpcf7-form-control-wrap {
    text-align: left;
    margin-bottom: 10px;
}

  @media (max-width:480px){
      .page { padding:36px 16px 48px; }
      h1.page-title{ font-size:25px; margin-bottom: 30px; }
      .left{ padding:18px; }
      .benefit .desc { font-size:12px; max-width:100%; }
      .image-frame{ height:200px; }
      .card-wrap{height: auto !important;}
      .prod-wrap{margin-top: 0px !important;}
      .hg-qt-p{
        padding-left: 30px;
        padding-right: 30px;
      }
      .product-name{
padding-bottom: 20px;
      }

.hg-qt{
  font-size: 30px !important;
  font-weight: 700;
  color: #fff;
   padding-left: 30px;
        padding-right: 30px;

}

   .container-wood {
     
     /*  grid-template-columns: 1fr 1fr; */
     
    }

.wpcf7

 {
    width: 100%;
    margin: auto;
}

    .swatch {
        font-size: 14px;
        padding: 15px;
    }
.charwood { width: 175px; height: 160px;}
    .banyan { width: 175px; height: 160px;}
    .riverwood { width: 175px; height: 160px; } 
    .redwood {width: 175px; height: 160px;}
    .pineneedle { width: 175px; height: 160px;}
    .beige { width: 175px; height: 160px;}
    .tips-box{height: auto;}
  
.cta-button {

  padding: 20px;
          font-size: 18px;
}


  .gt-off {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 40px;

  /* Animation */
  opacity: 0;
  animation: fadeTopToBottom 1s ease forwards;
  animation-delay: 0.9s; /* comes after p.lead */
}

 .lnd-title {
  line-height: 40px;
  width:100%;
 
  }

}



  