/* ============================================
   HOMEPAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section */
.hero-section {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

/* Stats Bar */
.stats-bar {
  background-color: #2d2d3a;
  padding: 1.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: Arial, sans-serif;
  font-size: 32px;
  color: #dab920;
}

.stat-label {
  font-family: Arial, sans-serif;
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 0.25rem;
}

/* Services Grid on Homepage */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-home {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  cursor: pointer;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card-home {
    aspect-ratio: auto;
    min-height: 320px;
  }
}

.service-card-home .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-home:hover .overlay {
  opacity: 1;
}

.service-card-home h3 {
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: 26px;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .service-card-home h3 {
    font-size: 30px;
  }
}

.service-card-home p {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 0.75rem;
  max-width: 360px;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card-home:hover p {
  opacity: 1;
  transform: translateY(0);
}

.service-card-home a {
  margin-top: 1rem;
  display: inline-block;
  position: relative;
  z-index: 10;
  color: #dab920;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-home:hover a {
  opacity: 1;
}

/* Products Section on Homepage */
.products-section {
  background-color: #a19898;
  padding: 5rem 0;
}

.product-card-home {
  background-color: #79865d;
  border-radius: 0;
  overflow: hidden;
}

.product-card-home .image-wrapper {
  height: 220px;
  overflow: hidden;
}

.product-card-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-home .content {
  padding: 1.5rem;
}

.product-card-home .category {
  font-family: Arial, sans-serif;
  color: #dab920;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-card-home h3 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 22px;
  margin-bottom: 0.75rem;
}

.product-card-home p {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.625;
}

/* CTA Section on Homepage */
.cta-section-home {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d2d3a 0%, #3d4a20 100%);
}
