/* === HERO SECTION === */
.hero-kitchen {
  background: url('/images/kitchen-hero.webp') center center/cover no-repeat;
  position: relative;
  padding: 9rem 1rem;
  color: white;
  text-align: center;
}
.hero-kitchen .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(1.5px);
  z-index: 1;
}
.hero-kitchen .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-kitchen h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}
.hero-kitchen p {
  font-size: 1.6rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin-bottom: 2.5rem;
}


.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-subline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #fff;
}

.hero-subline a.hero-phone {
  color: #ff6b00;
  font-weight: bold;
  text-decoration: none;
}

.hero-subline a.hero-phone:hover {
  color: #d65921;
  text-decoration: underline;
}



/* === RESPONSIVE === */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }
  .hero-kitchen h1 {
    font-size: 2.7rem;
	text-align: center;
  }
  .hero-kitchen p {
    font-size: 1.3rem;
	text-align: center;
  }
}



/* === KITCHEN SERVICES SECTION === */
/* === KITCHEN SERVICES SECTION (Light on Light, Subtle Contrast) === */
.kitchen-services-new {
  background: linear-gradient(to bottom, #ffffff, #f4f4f4);
  padding: 5rem 1rem;
  text-align: center;
}

.kitchen-services-new .section-title {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 3rem;
  border-bottom: 3px solid #ff6b00;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.section-intro {
  color: #333;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.kitchen-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(420px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.kitchen-service-item {
  background: #ffffff;
  border: 1px solid #bbb;
  padding: 2rem 1.75rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 575px;
}

.kitchen-service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

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

.kitchen-service-item h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.kitchen-service-item p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.7;
}

/* === RESPONSIVE TWEAKS === */

@media (max-width: 1250px) {
  .kitchen-services-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .kitchen-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kitchen-service-item {
    padding: 1.25rem;
	height: auto;
  }

  .kitchen-service-item img {
    height: auto;
    max-height: 200px;
  }
}

@media (max-width: 500px) {
  .kitchen-services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .kitchen-service-item {
    width: 100%;
    max-width: 100%;
  }
	.kitchen-service-item h3 {
	 font-size: 1.5rem
	}
  .kitchen-service-item p{
    font-size: 1.25rem;
  }
}


/* ================================================================================================================================================/*
/* === KITCHEN TRANSFORMATIONS SECTION === */
/* === KITCHEN TRANSFORMATIONS SECTION === */
.before-after-feature {
  background: linear-gradient(to bottom, #2c2c2c 0%, #1c1c1c 100%);
  padding: 5rem 1.25rem;
  color: #111;
  text-align: center;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #ff6b00;
  display: inline-block;
  padding-bottom: 0.4rem;
  color: white;
}

.section-subline {
  font-size: 1.2rem;
  color: white;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* === SLIDER LAYOUT === */
.ba-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ba-slider-container {
  flex: 1 1 48%;
  min-width: 300px;
  position: relative;
}

.ba-slider-container.full {
  flex: 1 1 100%;
  margin: 3rem 0;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border: 2px solid white;
  background: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: ew-resize;
}

.ba-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ba-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.1s ease-out;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ff6b00;
  transform: translateX(-2px);
  z-index: 3;
}

/* === STATIC IMAGE GALLERY === */
.static-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
  grid-auto-rows: 280px;
  padding: 0 1rem;
}

.gallery-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #ddd;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-cta-wrapper {
  margin-top: 2.5rem;
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .ba-row {
    flex-direction: column;
  }

  .ba-slider {
    height: 280px;
  }

  .ba-slider.tall {
    height: 320px;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .static-gallery {
    grid-auto-rows: 200px;
  }
}

 /*================================================================================================================================================================= */
.midpage-cta {
  background: #b8b8b8;
  padding: 5rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.03);
  border-top: 6px solid #ff6b00;
  border-bottom: 6px solid #ff6b00;
}

.midpage-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.midpage-cta h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.midpage-cta p {
  font-size: 1.2rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .midpage-cta {
    padding: 3.5rem 1rem;
  }

  .midpage-cta-inner {
    padding: 0;
  }

  .midpage-cta h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .midpage-cta p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .midpage-cta .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }
}

/* Optional: max-width to tighten text on tablets */
.midpage-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ================================================================================================================================================================= */

.kitchen-faq-section {
   background: linear-gradient(to bottom, #2c2c2c 0%, #1c1c1c 100%);
  padding: 5rem 1.25rem;
  text-align: left;
}

.faq-wrapper {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.faq-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  border-bottom: 3px solid #ff6b00;
  display: inline-block;
  margin-bottom: 3.5rem;
  padding-bottom: 0.4rem;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #999;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left !important;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 0rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
  color: #ff6b00;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left !important;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 0.75rem;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .faq-wrapper {
    padding: 0 1rem;
	max-width: 90%;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}
/* ================================================================================================================================================================= */
.why-gleaton-block {
  background: linear-gradient(to bottom, #ffffff, #f4f4f4);
  padding: 5rem 1.25rem;
}

.why-gleaton-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.why-gleaton-text {
  flex: 1 1 55%;
  padding-left: 1rem;
  padding-right: 2rem;
  text-align: left;
}

.why-gleaton-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #111;
  border-bottom: 3px solid #ff6b00;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.4rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.why-gleaton-text p,
.why-gleaton-text ul li {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #000;
  margin-bottom: 1rem;
}

.why-gleaton-text a {
  color: #ff6b00;
  font-weight: bold;
  text-decoration: underline;
}

.why-gleaton-text a:hover {
  color: #d65921; /* Optional: darker orange on hover */
}

.why-gleaton-image {
   flex: 0 0 45%;
  max-width: 38%;
}

.why-gleaton-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border: 4px solid #b8b8b8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.value-list li {
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 1.8rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #000;
}

.value-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #ff6b00;
  font-size: 1.3rem;
  font-weight: bold;
}

@media (max-width: 900px) {
  .why-gleaton-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    align-items: center;
  }

  .why-gleaton-text,
  .why-gleaton-image {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }

  .why-gleaton-image img {
    width: 450px;
    max-height: 500px;
    object-fit: cover;
    border-width: 3px;
  }

  .why-gleaton-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    text-align: left;
  }

  .why-gleaton-text p,
  .why-gleaton-text ul li {
    font-size: 1rem;
    line-height: 1.65;
  }

  .value-list li::before {
    font-size: 1.2rem;
  }

  .why-gleaton-text .btn-primary,
  .why-gleaton-text .btn-secondary {
    width: auto;
    font-size: 0.95rem;
    padding: 0.85rem 1.4rem;
  }
}

@media (max-width: 560px) {
  .why-gleaton-text h2 {
    font-size: 1.65rem;
    line-height: 1.3;
    text-align: left;
  }

  .why-gleaton-text p,
  .why-gleaton-text ul li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .why-gleaton-image img {
    max-height: 350px;
  }

  .why-gleaton-wrapper {
    gap: 1.5rem;
  }

  .why-gleaton-text .btn-primary,
  .why-gleaton-text .btn-secondary {
    width: 100%;
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
    text-align: center;
  }
}
/* ================================================================================================================================================================= */


.kitchen-expect-block {
  background: linear-gradient(to bottom, #FFFFFF, #F0F0F0);
  padding: 4rem 1.25rem;
}


.kitchen-expect-wrapper {
  display: flex;
  flex-wrap: nowrap; /* ⛔ prevents wrapping unless forced by media query */
  gap: 3rem;
  align-items: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}




/* FORCE FLIP */
.kitchen-expect-wrapper.flipped > .kitchen-expect-image {
  order: 0;
}


.kitchen-expect-wrapper.flipped > .kitchen-expect-text {
  order: 1;
}


.kitchen-expect-text {
  flex: 0 0 58%;
  padding-right: 2rem;
}


.kitchen-expect-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  border-bottom: 3px solid #ff6b00;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.4rem;
}


.kitchen-expect-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 1.2rem;
}




.kitchen-expect-image {
  flex: 0 0 42%;
  padding-left: 1rem;
}
.kitchen-expect-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 4px solid #b8b8b8;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}



/* === Kitchen Expect: Mobile Fix === */
@media (max-width: 900px) {
  .kitchen-expect-wrapper {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 0 1rem;
  }

  .kitchen-expect-text,
  .kitchen-expect-image {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 0;
  }

  .kitchen-expect-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    box-shadow: none;
  }

  .kitchen-expect-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .kitchen-expect-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .kitchen-expect-text .btn-secondary {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }
}
.kitchen-expect-text p:last-of-type {
  margin-top: 2.5rem; /* Adjust to your spacing needs */
}

.btn-secondary:hover {
  background: #2a2a2a;
}

/* ================================================================================================================================================================= */
/* === Testimonial Section === */
.google-reviews {
  background: linear-gradient(to bottom right, #2b2b2b, #111);
  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: #fff;
}

/* 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; 
  }
}


/* ================================================================================================================================================================= */
.final-cta-block {
  background: linear-gradient(to bottom, #d8d8d8, #b8b8b8);
  padding: 6rem 1.5rem;
  text-align: center;
  color: #111;
  border-top: 6px solid #ff6b00;
  border-bottom: 6px solid #ff6b00;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.05);
}


.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}


.final-cta-block h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #111;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}


.final-cta-block p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.7;
}



.final-cta-block p em {
  display: block;
  margin-top: 1.25rem;
  color: #555;
  font-style: italic;
  font-size: 1rem;
}


@media (max-width: 768px) {
  .final-cta-block h2 {
    font-size: 2rem;
  }


  .final-cta-block p {
    font-size: 1.05rem;
  }


  .btn-clean {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }
}


@media (max-width: 768px) {
  .final-cta-block h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .final-cta-block p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-inner {
    padding: 0 1rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 389px) {
  .final-cta-block .btn-primary {
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    letter-spacing: 0.25px;
    white-space: normal; /* allow wrapping gracefully */
    line-height: 1.3;
  }
}

@media (max-width: 374px) {
  .final-cta-block .btn-primary {
    font-size: 0.85rem;
    padding: 0.75rem 0.9rem;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 354px) {
  .final-cta-block .btn-primary {
    font-size: 0.8rem;
    padding: 0.7rem 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.15px;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    width: 100%;
  }
}
.review-date {
  font-size: 0.9rem;
  color: #fff;
  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;
}