/* Equipment Showcase - Visual Focus */
.equipment-showcase {
  padding: 3rem 0 4rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.equipment-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e6ecf2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.equipment-card--multi {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .equipment-card--multi {
    grid-column: span 1;
  }
}

.equipment-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #0f2a38;
  flex-shrink: 0;
}

.equipment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.equipment-card:hover .equipment-image {
  transform: scale(1.05);
}

.equipment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(15, 42, 56, 0.9) 0%, rgba(15, 42, 56, 0) 100%);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.equipment-icon {
  width: 48px;
  height: 48px;
  background: rgba(217, 179, 130, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9b382;
  font-size: 1.4rem;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(217, 179, 130, 0.2);
}

.equipment-overlay h3 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
  line-height: 1.2;
}

.equipment-body {
  padding: 1.5rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.equipment-body p {
  color: #2a4050;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.equipment-body .btn-outline {
  margin-top: auto;      /* pushes button to bottom */
  align-self: center;    /* centers the button */
  width: 100%;
  max-width: 240px;
  justify-content: center;
}   

/* Subtype Gallery - Image based */
.subtype-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0.5rem 0 1.2rem;
}

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

.subtype-image {
  border-radius: 12px;
  overflow: hidden;
  height: 90px;
  background: #e8f0f5;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.subtype-image:hover {
  border-color: #d9b382;
  transform: scale(1.03);
}

.subtype-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subtype-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1f4a5e;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

.btn-outline {
  background: #d9b382;
  color: #0f2a38;
  border: 2px solid #d9b382;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: center;
}

.btn-outline:hover {
  background: #d9b382;
  color: #0f2a38;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,148,29,0.45);
}


/* Why Section */
.why-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e6ecf2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: #e8f0f5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: #1f4a5e;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f2a38;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: #2a4050;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 3rem 0 4rem;
}

.cta-box {
  background: linear-gradient(135deg, #0f2a38 0%, #1f4a5e 100%);
  border-radius: 24px;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.cta-actions {
  flex-shrink: 0;
}

.btn-primary {
  background: #d9b382;
  color: #0f2a38;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #c9a272;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .equipment-image-wrapper {
    height: 220px;
  }
  
  .subtype-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  {
    height: 80px;
  }
  
  .cta-box {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
  
  .equipment-overlay {
    padding: 1.5rem 1.2rem 1.2rem;
  }
  
  .equipment-overlay h3 {
    font-size: 1.3rem;
  }
  
  .equipment-body {
    padding: 1.2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .equipment-image-wrapper {
    height: 200px;
  }
  
  .equipment-overlay h3 {
    font-size: 1.1rem;
  }
  
  .subtype-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .subtype-image {
    height: 70px;
  }
  
  .subtype-label {
    font-size: 0.6rem;
  }
}