.tiles-section {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
  background-color: var(--color-bg-light);
}
@media (max-width: 900px) {
  .tiles-section {
    margin-bottom: 120px;
  }
}
.tiles-section .text-brand-green {
  color: var(--color-brand-green, #72A250);
}
.tiles-section__header {
  width: 100%;
  max-width: var(--vw-max, 1440px);
  margin: 0 auto;
  padding: var(--section-padding-y) var(--section-padding-x) 40px;
}
.tiles-section__header .divider {
  width: 120px;
  height: 4px;
  background-color: var(--color-brand-gold, #AB7E43);
  margin-bottom: 20px;
  transform: scaleX(0);
  transform-origin: left center;
  position: relative;
  z-index: 10;
}
.tiles-section__header .tiles-section__title {
  max-width: 600px;
}
.tiles-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: var(--vw-max, 1440px);
  margin: 0 auto;
  border-top: 5px solid var(--color-brand-gold, #AB7E43);
  border-bottom: 5px solid var(--color-brand-gold, #AB7E43);
  min-height: 500px;
  background-color: var(--color-brand-green, #72A250);
}
@media (max-width: 1024px) {
  .tiles-section__grid {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }
}
@media (max-width: 600px) {
  .tiles-section__grid {
    grid-template-columns: 1fr;
  }
}
.tiles-section__tile {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  cursor: pointer;
  outline: none;
  opacity: 0;
  transform: translateY(40px);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.tiles-section__tile:last-child {
  border-right: none;
}
@media (max-width: 1024px) {
  .tiles-section__tile:nth-child(2n) {
    border-right: none;
  }
  .tiles-section__tile:nth-child(1), .tiles-section__tile:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}
@media (max-width: 600px) {
  .tiles-section__tile {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .tiles-section__tile:last-child {
    border-bottom: none;
  }
}
.tiles-section__tile .tile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}
.tiles-section__tile .tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(87, 128, 58, 0.8) 0%, rgba(114, 162, 80, 0.6) 100%);
  transition: all 0.4s ease;
}
.tiles-section__tile .tile-content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--color-text-light, #FFFFFF);
}
.tiles-section__tile .tile-title {
  font-weight: var(--fw-bold, 700);
  margin-bottom: 20px;
}
.tiles-section__tile .tile-hover-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 5px;
  /* Custom scrollbar */
}
.tiles-section__tile .tile-hover-content::-webkit-scrollbar {
  width: 6px;
}
.tiles-section__tile .tile-hover-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.tiles-section__tile .tile-hover-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.tiles-section__tile .tile-hover-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}
.tiles-section__tile .tile-hover-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.1);
}
.tiles-section__tile .tile-hover-content .tile-description {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.tiles-section__tile:hover .tile-bg, .tiles-section__tile:focus .tile-bg {
  transform: scale(1.05);
  opacity: 0;
}
.tiles-section__tile:hover .tile-overlay, .tiles-section__tile:focus .tile-overlay {
  background: #AECF91;
  opacity: 1;
}
.tiles-section__tile:hover .tile-hover-content, .tiles-section__tile:focus .tile-hover-content {
  opacity: 1;
  transform: translateY(0);
}
.tiles-section__cta-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(40%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .tiles-section__cta-wrapper {
    transform: translateY(65%) translateX(-50%);
  }
}
.tiles-section__cta-card {
  background-color: var(--color-bg-light, #FFFFFF);
  width: 100%;
  max-width: 600px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-card-md, 0 12px 16px rgba(16, 24, 40, 0.1), 0 6px 8px rgba(16, 24, 40, 0.07));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.tiles-section__cta-card:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: var(--shadow-card-lg);
}
.tiles-section__cta-card:hover .cta-phone {
  color: var(--color-brand-green-dark);
}
.tiles-section__cta-card .cta-label {
  color: var(--color-brand-dark-grey, #404040);
  margin-bottom: 10px;
  font-weight: var(--fw-bold, 700);
}
.tiles-section__cta-card .cta-phone {
  font-weight: var(--fw-bold, 700);
  margin-bottom: 20px;
}
.tiles-section__cta-card .cta-desc {
  color: var(--color-text-dark, #AFAFAF);
  max-width: 400px;
  font-size: var(--fs-caption-lg);
}

/*# sourceMappingURL=tiles-section.css.map */
