/* Hero Section */
.hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0052A5 0%, #0066CC 100%);
  color: #FFFFFF;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #E8ECEF;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.hero-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Inter", sans-serif;
}

.hero-btn.primary {
  background-color: #FFFFFF;
  color: #0052A5;
}

.hero-btn.primary:hover {
  background-color: #F8F9FA;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .hero-btn.primary {
  background-color: #0052A5;
  color: #FFFFFF;
}

.cta-section .hero-btn.primary:hover {
  background-color: #0066CC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 165, 0.3);
}

.hero-btn.secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.hero-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Availability Section */
.availability {
  padding: 40px 20px;
  background-color: #E3F2FD;
  text-align: center;
}

.availability .container {
  max-width: 1200px;
  margin: 0 auto;
}

.availability-text {
  font-size: 20px;
  font-weight: 600;
  color: #0052A5;
  margin: 0;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #2C3E50;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background-color: #F8F9FA;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E8ECEF;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 82, 165, 0.15);
  border-color: #0052A5;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E3F2FD;
  border-radius: 50%;
  position: relative;
}

/* Quality Icon - Checkmark */
.icon-quality::before {
  content: '';
  width: 24px;
  height: 12px;
  border: 3px solid #0052A5;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -12px;
}

/* Quantity Icon - Stacked bars/chart */
.icon-quantity::before,
.icon-quantity::after {
  content: '';
  background-color: #0052A5;
  border-radius: 2px;
  position: absolute;
  left: 50%;
}

.icon-quantity::before {
  width: 20px;
  height: 6px;
  bottom: 28px;
  margin-left: -10px;
}

.icon-quantity::after {
  width: 28px;
  height: 6px;
  bottom: 18px;
  margin-left: -14px;
}

/* Support Icon - Circular connection */
.icon-support::before {
  content: '';
  width: 32px;
  height: 32px;
  border: 3px solid #0052A5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-support::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #0052A5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2C3E50;
  font-weight: 600;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5A6C7D;
}

/* Testimonial Section */
.testimonial {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0052A5 0%, #0066CC 100%);
  color: #FFFFFF;
}

.testimonial .container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-content {
  text-align: center;
}

.testimonial-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.8;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  font-size: 16px;
  color: #E8ECEF;
  font-weight: 600;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E3F2FD 0%, #F8F9FA 100%);
  text-align: center;
}

.cta-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2C3E50;
  font-weight: 700;
}

.cta-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #5A6C7D;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .features h2,
  .cta-section h2 {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .availability-text {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-icon {
    font-size: 60px;
  }
}
