


/* Home Page Styles */

.home-page {
  min-height: 100vh;
  background: #f5f7fa;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  min-height: 600px;
}

.slide {
  min-width: 100%;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
}

.slide img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.slide-overlay {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 5% 3rem 7%;
  z-index: 1;
}

.slide-content {
  color: white;
  max-width: 600px;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #eb0a1e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(235, 10, 30, 0.3);
}

.btn-hero:hover {
  background: #c00818;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(235, 10, 30, 0.4);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
  left: 2rem;
}

.slider-nav.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Promo Banner */
.promo-banner {
  background: white;
  padding: 4rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promo-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #eb0a1e;
}

.promo-card.highlight {
  background: linear-gradient(135deg, #eb0a1e 0%, #c00818 100%);
  color: white;
  border-color: #eb0a1e;
}

.promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.promo-card.highlight .promo-icon {
  background: rgba(255, 255, 255, 0.2);
}

.promo-card:not(.highlight) .promo-icon {
  background: rgba(235, 10, 30, 0.1);
}

.promo-card:not(.highlight) .promo-icon svg {
  color: #eb0a1e;
}

.promo-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.promo-card.highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.promo-card:not(.highlight) p {
  color: #666;
}

.promo-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.promo-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.promo-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.promo-link {
  display: inline-block;
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-card.highlight .promo-link {
  color: white;
  border-bottom: 2px solid white;
}

.promo-card:not(.highlight) .promo-link {
  color: #eb0a1e;
  border-bottom: 2px solid #eb0a1e;
}

.promo-link:hover {
  opacity: 0.8;
}

/* Featured Products */
.featured-section {
  padding: 4rem 0;
  background: #f5f7fa;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.featured-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #eb0a1e;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 10;
}

.featured-image-link {
  display: block;
  overflow: hidden;
  background: #f9fafb;
}

.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.featured-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #eb0a1e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.featured-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.featured-spec {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
}

.featured-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #eb0a1e;
  margin-bottom: 1.5rem;
}

.featured-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
}

.btn-detail-small,
.btn-promo-small {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-detail-small {
  background: white;
  border: 2px solid #eb0a1e;
  color: #eb0a1e;
}

.btn-detail-small:hover {
  background: #eb0a1e;
  color: white;
}

.btn-promo-small {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
}

.btn-promo-small:hover {
  background: #20ba5a;
  border-color: #20ba5a;
}

.btn-promo-small svg {
  width: 16px;
  height: 16px;
  margin-right: 0.3rem;
}

.view-all-container {
  text-align: center;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #eb0a1e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(235, 10, 30, 0.3);
}

.btn-view-all:hover {
  background: #c00818;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(235, 10, 30, 0.4);
}

/* Why Choose Us */
.why-choose-us {
  background: white;
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(235, 10, 30, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  color: #eb0a1e;
}

.benefit-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  background: #f5f7fa;
  padding: 4rem 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.video-info p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 4rem 0;
}

.cta-section .container {
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background: white;
  color: #1a1a1a;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slider {
    min-height: 500px;
  }

  .slides {
    min-height: 500px;
  }

  .slide {
    min-height: 500px;
  }

  .slide-overlay {
    min-height: 500px;
    padding: 2rem 5%;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slider-nav {
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
  }

  .slider-nav.prev {
    left: 1rem;
  }

  .slider-nav.next {
    right: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .promo-grid,
  .featured-grid,
  .benefits-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 450px;
  }

  .slides {
    min-height: 450px;
  }

  .slide {
    min-height: 450px;
  }

  .slide-overlay {
    min-height: 450px;
    padding: 2rem 1rem;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}
