@charset "utf-8";
/* CSS Document */

/* === HERO SECTION === */
.hero-split {
  position: relative;
  background: url('/images/hero.webp') no-repeat center center/cover;
  color: #fff;
  padding: 3rem 1rem;
  padding-top: 2.5rem;    /* Reduced top space */
  padding-bottom: 7rem;   /* Keep generous bottom spacing */
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45));
  z-index: 1;
}


.hero-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 0rem; /* Reduce overall horizontal space */
  gap: 2rem;
  position: relative;
  z-index: 2;
}


.hero-left {
  width: 60%;
}


.hero-left h1 {
  position: relative;
  display: inline-block;
  font-size: 4.6rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Stronger shadow for readability */
}

.hero-left h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 5px;
  background-color: #ff6b00;
}


.hero-subhead {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 1.5rem;
  max-width: 600px;
  text-shadow: 1.5px 1.5px rgba(255, 255, 255, 0.2);
}


.hero-left ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 2rem;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.hero-checklist li {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-checklist li::first-letter {
  color: #ff6b00;
  font-weight: 900;
}

.hero-right {
  width:  40%;
  align-self: flex-start;
  margin-top: -.5rem; /* adjust this value to control how high it sits */
}


.hero-form {
  background-color: #fff;
  color: #111;
  padding: 2rem;
  border: 5px solid #ff6b00;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}


.hero-form h2 {
  font-size: 1.75rem;
  color: #ff6b00;
  margin-bottom: 0.5rem;
}


.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}


.hero-form textarea {
  resize: vertical;
}


.hero-form button {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #ff6b00;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}


.hero-form button:hover {
  background-color: #e67300;
}


.hero-form small {
  font-size: 0.85rem;
  color: #000000;
  margin-top: 0.5rem;
}

/* === CLEAN HERO MOBILE === */
@media (min-width: 901px) and (max-width: 1350px) {
  .hero-left h1 {
    font-size: 4.2rem;
  }

  .hero-subhead {
    font-size: 1.9rem;
    max-width: 580px;
  }

  .hero-checklist li {
    font-size: 1.7rem;
  }

  .hero-form {
    max-width: 500px;
    padding: 2rem;
  }

  .hero-form h2 {
    font-size: 1.7rem;
  }
}
@media (min-width: 769px) and (max-width: 900px) {
  .hero-flex {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem 1.25rem;
  }

  .hero-left {
    width: 58%;
  }

  .hero-right {
    width: 42%;
  }

  .hero-left h1 {
    font-size: 3.8rem;
  }

  .hero-subhead {
    font-size: 1.75rem;
    max-width: 520px;
  }

  .hero-checklist li {
    font-size: 1.5rem;
  }

  .hero-form {
    max-width: 480px;
    padding: 1.75rem;
  }

  .hero-form h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    padding: 2rem 1rem;
  }


  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
  }


  .hero-left h1 {
    font-size: 3.5rem;
    text-align: left;
	font-weight: 900;
  }


  .hero-left h2 {
    font-size: 1.9rem;
    text-align: left;
  }


  .hero-checklist li {
    font-size: 1.6rem;
    text-align: left;
  }


  .hero-form {
    margin-top: 3rem;
    padding: 1.5rem;
    position: static;
    z-index: 1;
  }
}

@media (max-width: 400px) {
  .hero-flex {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .hero-left h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    text-align: left;
  }

  .hero-left h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    text-align: left;
  }

  .hero-checklist li {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
	font-weight: 600;
    text-align: left;
  }

  .hero-right {
    margin-top: 2rem;
  }
	
  .hero-form {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .hero-form h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .hero-form input,
  .hero-form textarea {
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
  }

  .hero-form button {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .hero-form small {
    font-size: 0.75rem;
    text-align: center;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* === WHY GLEATON SECTION === */
/* === WHY GLEATON SECTION === */
.why-gleaton-section {
  background: linear-gradient(to bottom, #efefef, #dcdcdc);
  padding: 5rem 1rem;
}

.why-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-intro h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 0.5rem;
}

.orange-underline {
  width: 650px;
  height: 5px;
  background-color: #ff6b00;
  margin: 1rem auto 2rem;
}

.why-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.why-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.why-card {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 2rem 1.5rem;
  max-width: 270px;
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* === Responsive Cleanup === */
@media (max-width: 768px) {
  .why-card-grid {
    flex-direction: column;
    align-items: center;
  }

  .why-intro h2 {
    font-size: 2rem;
  }

  .why-intro p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .orange-underline {
    width: 80%;
  }

  .why-icon {
    width: 50px;
    margin-bottom: 0.75rem;
  }

  .why-card {
    max-width: 100%;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, #3a3a3a, #222222);
overflow: hidden;
}


.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/Dan/images2/kitchen-showcase1.webp') center center / cover no-repeat;
  opacity: 0.03; /* barely visible texture */
  z-index: -1;
}
.services-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}


.services-title {
  font-size: 4rem;
  font-weight: 800;
  color: #F1F1F1;
  margin-bottom: 1rem;
}


.services-subtitle {
  font-size: 3rem;
  font-weight: 500;
  color: #F1F1F1;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); /* widened from 300px */
  gap: 2rem;
}


/* === Individual Card Styling === */
.service-card {
  background: #B8B8B8;
  padding: 2rem;
  border: 2px solid #808080;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #d9480f;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px); /* More pronounced lift */
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:focus-within {
  outline: 3px solid #ff6b00;
  outline-offset: 4px;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}


/* === Card Title === */
.service-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.4rem;
}




/* === Paragraph === */
.service-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}




/* === Responsive Cleanup === */
@media (max-width: 768px) {
  .services-title {
    font-size: 3rem;
  }


  .services-subtitle {
    font-size: 1rem;
  }


  .service-card {
    padding: 1.5rem;
  }


  .service-card h3 {
    font-size: 1.3rem;
  }


  .service-card p {
    font-size: 1rem;
  }


  .btn-orange {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
  }
}

.deck-feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* key: aligns top edges */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 2rem 3rem 2rem;
  margin-top: 3rem;
  border: 2px solid black; 
  background: #b8b8b8;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* global default to left */
}

.deck-feature-text {
  flex: 1 1 55%;
  text-align: left; /* force all text left-aligned */
}

.deck-feature-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: black;
}

.deck-feature-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.deck-feature-image {
  flex: 1 1 40%;
  text-align: left; /* in case the image caption or future content is added */
}


.deck-feature-image img {
  width: 100%;
  max-height: 300px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .deck-feature-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1rem;
  }

  .deck-feature-text h3 {
    font-size: 1.6rem;
  }

  .deck-feature-text p {
    font-size: 1rem;
  }
}
.deck-feature-text .btn-secondary {
  display: inline-block;
  margin-top: 0.25rem !important;
}

/* === SEO SECTION === */
.intro-section {
  position: relative;
  background-color: #f3f8f6;
  padding: 5rem 1rem;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/concrete-texture.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2; /* ? THIS is what makes it barely there */
  z-index: 0;
  pointer-events: none;
}

.intro-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  position: relative;
  z-index: 1;
}


.intro-text {
  flex: 1 1 500px;
  text-align: left;
 
}


.intro-text h2 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 1rem;
}


.intro-text p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
  max-width: 800px;
}



.intro-image {
  flex: 1 1 500px;
  text-align: center;
  overflow: hidden;
  max-width: 100%;
}


.intro-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 4px solid #b8b8b8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* === Responsive === */
@media (max-width: 768px) {
  .intro-wrapper {
    flex-direction: column;
    text-align: center;
  }


  .intro-text,
  .intro-image {
    flex: 1 1 100%;
  }


  .intro-text h2 {
    font-size: 1.8rem;
	font-weight: 900;
  }


  .intro-text p {
    font-size: 1.3rem;
  }
}

@media (max-width: 1250px) {
  .intro-text {
    margin-left: 1rem;
  }
}

/* Reset margin on mobile */
@media (max-width: 768px) {
  .intro-text {
    margin-left: 0;
    text-align: center;
  }
}
/* === GALLERY SECTION === */
.gallery-section {
  background-color: #333;
  padding: 5rem 1rem;
  text-align: center;
}

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-title {
  font-size: 3.1rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gallery-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.mt-4 {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }
}
/* === Testimonial Section === */
.google-reviews {
  background: #b8b8b8;
  padding: 5rem 1rem;
}

.review-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: black;
}

/* Layout Container */
.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow Buttons */
.slider-btn {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background-color: #ff6b00;
  color: white; 
  border: none; 
  font-size: 2rem; 
  padding: 0.5rem 1.2rem; 
  cursor: pointer; 
  z-index: 2;
  transition: background 0.3s ease; 
}

.slider-btn:hover {
  background-color: #d86f01;
}

.prev-slide {
  left: -3rem;
}

.next-slide {
  right: -3rem; 
}

/* By default, hide the navigation meant for mobile */
.slider-nav {
  display: none;
}

/* Frame limits visible area */
.slider-frame {
  overflow: hidden; 
  width: 100%; 
}

/* Track holds cards inline */
.slider-track {
  display: flex; 
  gap: 2rem;
  transition: transform 0.5s ease-in-out; 
  padding: 0 1rem; 
}

/* Review Cards */
.review-box {
  flex: 0 0 calc(50% - 1rem); 
  background-color: #fff; 
  border: 3px solid #ff6b00;
  padding: 2rem; 
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  font-size: 1.1rem; 
  font-weight: 500; 
  color: #111; 
  text-align: left;
  box-sizing: border-box;
}

.review-box .stars {
  font-size: 1.2rem; 
  color: #ff6b00; 
  font-weight: bold;
  margin-bottom: 1rem; 
}

.review-box strong {
  display: block;
  margin-top: 1rem;
  font-weight: 800;
  color: #333;
}

.review-box .google-logo {
  position: absolute;
  top: 1rem; 
  right: 1rem; 
  width: 60px; 
  height: auto;
  opacity: 0.9;
}

/* Mobile: 1 card per view and updated arrow styles */
@media (max-width: 768px) {
  /* HIDE the original side-arrows */
  .testimonial-slider > .slider-btn {
    display: none;
  }

  /* SHOW and style the new navigation container for the bottom arrows */
  .slider-nav {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
  }
  
  /* Reset the positioning for the buttons inside the mobile nav container */
  .slider-nav .slider-btn {
    position: static;
    transform: none;
    display: inline-block;
    margin: 0 0.5rem;
  }
  
  .review-box {
    flex: 0 0 100%; 
  }

  .slider-track {
    gap: 1rem;
    padding: 0; 
  }
}

.services-alt-section {
  padding: 5rem 1rem;
  position: relative;
  background: linear-gradient(to bottom, #3a3a3a, #222222);
  border-bottom: 6px solid #ff6b00;
  overflow: hidden;
}

.services-alt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/Dan/images2/kitchen-showcase1.webp') center center / cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.services-alt-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-alt-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
  background: #B8B8B8;
  border: 5px solid #ff6b00;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-alt-card.reverse {
  flex-direction: row-reverse;
}

.service-alt-img {
  flex: 1 1 50%;
  padding: 1rem; /* Creates the inner gray “frame” */
  display: flex;
  align-items: center;
  justify-content: center;

}

.service-alt-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Optional soft lift */
    max-height: 220px;
  object-fit: cover;
}

.service-alt-content {
  flex: 1 1 50%;
  padding: 2rem;
  color: #111;
}

.service-alt-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #111;
}
.service-alt-content p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #111;
}

.services-alt-wrapper h2,
.services-alt-wrapper .services-subtitle {
  text-align: center;
  margin-bottom: 1rem;
}
.services-title h2 {
	font-size: 3.5rem;
}
.services-subtitle {
  font-size: 1.4rem;
  color: #ddd;
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 1000px; /* ? increase from 700px or similar */
  padding: 1rem 1rem 2.5rem 1rem;
}

.service-alt-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-alt-card,
  .service-alt-card.reverse {
    flex-direction: column;
  }

  .service-alt-img,
  .service-alt-content {
    flex: 1 1 100%;
  }

  .service-alt-content {
    padding: 1.5rem;
    text-align: center;
  }
}

.review-date {
  font-size: 0.9rem;
  color: #333;
  margin: 2.5rem auto 1rem auto; /* increased top margin for spacing */
  text-align: center;
}

.review-cta {
  text-align: center;
  margin-top: 1rem;
}

.review-cta a {
  font-size: 1.15rem; /* larger text */
  font-weight: 700;   /* bold */
  color: #ff6b00;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.review-cta a:hover {
  border-bottom-color: #ff6b00;
}