/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 550px;
  color: white;
  margin-top: -50px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-benefits {
  display: flex;
  gap: 20px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.hero-benefit svg {
  color: var(--primary-color);
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.hero-prev, .hero-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-prev:hover, .hero-next:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
}

/* Advantages Section */
.advantages-section {
  padding: 0 0 60px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.advantage-item {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 25px 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.advantage-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.advantage-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Price Match Banner */
.price-match-banner {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  padding: 40px 0;
  margin-bottom: 60px;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-match-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.price-match-icon {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: var(--box-shadow);
  flex-shrink: 0;
}

.price-match-text {
  max-width: 500px;
}

.price-match-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.price-match-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
}

.price-match-link {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.price-match-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Promotional Banner */
.promo-banner {
  padding: 60px 0;
  background-color: var(--background);
  margin-bottom: 60px;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.promo-text {
  max-width: 500px;
}

.promo-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.promo-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.promo-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--secondary-color);
}

.promo-features li svg {
  color: var(--success-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.promo-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.promo-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sale Products Section */
.sale-products-section {
  padding: 60px 0;
  background-color: var(--danger-light);
  margin-bottom: 60px;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background-color: var(--background);
  margin-bottom: 60px;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-author {
  text-align: left;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

.author-product {
  font-size: 14px;
  color: var(--text-light);
}

.testimonial-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.testimonial-link:hover {
  gap: 8px;
}

.testimonial-link:hover svg {
  transform: translateX(3px);
}

.testimonial-link svg {
  transition: transform 0.3s ease;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-prev, .testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Brand Section */
.brand-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.brand-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

.brand-logo {
  text-align: center;
}

.brand-logo img {
  max-width: 100%;
  height: auto;
}

.brand-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.brand-info p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  margin-bottom: 60px;
}

.newsletter-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
}

.newsletter-left {
  flex-basis: 40%;
  padding: 40px;
  background-color: #ffffff;
}

.newsletter-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.newsletter-features {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.newsletter-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  color: #555555;
}

.check-icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-right {
  flex-basis: 60%;
  padding: 40px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signup-content {
  max-width: 480px;
}

.signup-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

.signup-form .form-group {
  display: flex;
  margin-bottom: 15px;
}

.signup-form input[type="email"] {
  flex-grow: 1;
  height: 54px;
  padding: 0 20px;
  border: 1px solid #dddddd;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
  color: #333333;
  outline: none;
}

.signup-button {
  min-width: 140px;
  height: 54px;
  background-color: #f6cc00;
  color: #333333;
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-button:hover {
  background-color: #e6b900;
  transform: translateY(-2px);
}

.privacy-note {
  font-size: 13px;
  color: #888888;
  margin-top: 10px;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
  background-color: #333333;
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/pattern-dark.png');
  opacity: 0.05;
  pointer-events: none;
}

.contact-cta-container {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  max-width: 60%;
}

.cta-icon {
  background-color: rgba(246, 204, 0, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6cc00;
  flex-shrink: 0;
}

.cta-text h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.2;
}

.cta-text p {
  color: #bbb;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.contact-cta-buttons {
  display: flex;
  gap: 20px;
}

.phone-button, .contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  height: 60px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-button {
  border: 2px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

.phone-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-button {
  background-color: #f6cc00;
  color: #333333;
  border: 2px solid #f6cc00;
}

.contact-button:hover {
  background-color: #ffda3e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}