/* Home Gallery Section */
.home-gallery {
  padding: 35px 0;
  text-align: center;
}
.home-gallery .a-title {
  margin-bottom: 40px;
}
.home-gallery .a-title h3 {
  display: inline-block;
}
.home-gallery .a-title h3:before {
  content: "";
  height: 1px;
  width: 100px;
  top: 50%;
  left: -130px;
  margin-right: 25px;
  background: black;
  position: absolute;allery-lightbox-modal
}
.home-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media screen and (max-width: 991px) {
  .home-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .home-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.home-gallery .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.home-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home-gallery .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(161, 46, 36, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-gallery .gallery-item .gallery-overlay i {
  color: #fff;
  font-size: 28px;
}
.home-gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.home-gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999999;
  align-items: center;
  justify-content: center;
}
body.gallery-lightbox-open {
  overflow: hidden;
}
.gallery-lightbox-modal.active {
  display: flex;
}
.gallery-lightbox-modal .gallery-lightbox-content {
  max-width: 90%;
  max-height: 85%;
}
.gallery-lightbox-modal .gallery-lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.gallery-lightbox-modal .gallery-lightbox-close,
.gallery-lightbox-modal .gallery-lightbox-prev,
.gallery-lightbox-modal .gallery-lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  z-index: 2;
  padding: 10px 15px;
  line-height: 1;
}
.gallery-lightbox-modal .gallery-lightbox-close:hover,
.gallery-lightbox-modal .gallery-lightbox-prev:hover,
.gallery-lightbox-modal .gallery-lightbox-next:hover {
  color: #a12e24;
}
.gallery-lightbox-modal .gallery-lightbox-close {
  top: 15px;
  right: 25px;
}
.gallery-lightbox-modal .gallery-lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox-modal .gallery-lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Google Reviews Section */
.google-reviews {
  background: #faf8f5;
  padding: 50px 0 60px;
}
.google-reviews .reviews-header {
  text-align: center;
  margin-bottom: 45px;
}
.google-reviews .reviews-title {
  font-size: 42px;
  font-weight: 700;
  color: #5f1a19;
  letter-spacing: 2px;
  margin: 0 0 12px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .google-reviews .reviews-title {
    font-size: 32px;
  }
}
.google-reviews .reviews-title-line {
  display: block;
  width: 50px;
  height: 3px;
  background: #c9a84c;
  margin: 0 auto 15px;
}
.google-reviews .reviews-subtitle {
  font-size: 18px;
  color: #7c7c7c;
  margin: 0;
}
.google-reviews .trustindex-widget {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.google-reviews .trustindex-widget .ti-widget {
  margin: 0 auto;
}
