/* ========================================
   FRONT PAGE CUSTOM STYLES
   Premium Office & Kitchen
======================================== */

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* WHY US */
.why-us-section {
  background-color: var(--background-light);
  padding: 80px 0;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.why-us-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.why-us-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-us-card:hover .why-us-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

/* PRODUCTS */
.products-section {
  padding: 80px 0;
}
.add-to-cart.btn {
  background-color: var(--accent-color);
  color: var(--white);
}
.add-to-cart.btn:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}

/* PROJECTS SLIDER */
.projects-section {
  padding: 80px 0;
}
.projects-swiper {
  overflow: hidden;
}
.project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-info {
  position: absolute;
  bottom: 0;
  padding: 30px;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.project-card:hover .project-info {
  opacity: 1;
  transform: translateY(0);
}

/* TESTIMONIALS */
.testimonials-section {
  background-color: var(--background-light);
  padding: 80px 0;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 40px;
  text-align: center;
  position: relative;
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  font-size: 80px;
  color: var(--primary-color);
  opacity: 0.1;
  top: 0;
  left: 20px;
}
.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 20px;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
}
.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-weight: 600;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 100px 0;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    min-height: 480px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-buttons {
    justify-content: center;
  }
}
