/* ============================================
   INDUSTRIES PAGE STYLES
   ============================================ */

/* Industries Intro */
.industries-intro {
  padding: 2rem 0 1rem;
}

.industries-hero {
  background: linear-gradient(135deg, #0f2a38 0%, #1f4a5e 100%);
  border-radius: 28px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.industries-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: rgba(217, 179, 130, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.industries-hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.industries-hero-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.industries-hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 550px;
  line-height: 1.7;
}

.industries-hero-icon {
  width: 120px;
  height: 120px;
  background: rgba(217, 179, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #d9b382;
  flex-shrink: 0;
  border: 2px solid rgba(217, 179, 130, 0.15);
  position: relative;
  z-index: 2;
  animation: industries-pulse-icon 3s ease-in-out infinite;
}

@keyframes industries-pulse-icon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ============================================
   INDUSTRIES GRID - IMAGE BASED
   ============================================ */
.industries-grid-section {
  padding: 2rem 0 3rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.industry-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: default;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e6ecf2;
  background: #ffffff;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: #d9b382;
}

.industry-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 180px;
  background: #f0f4f8;
}

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

.industry-card:hover .industry-image {
  transform: scale(1.08);
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(15, 42, 56, 0.85) 0%, rgba(15, 42, 56, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 60px;
}

.industry-name {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* ============================================
   INDUSTRIES CTA SECTION
   ============================================ */
.industries-cta-section {
  padding: 3rem 0 4rem;
}

.industries-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;
}

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

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

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

/* ============================================
   SHARED BUTTON STYLES
   ============================================ */
.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: all 0.3s ease;
}

.btn-primary:hover {
  background: #c9a272;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 179, 130, 0.3);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .industries-hero {
    padding: 2.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .industries-hero-content p {
    max-width: 100%;
  }
  
  .industries-hero-icon {
    width: 90px;
    height: 90px;
    font-size: 3rem;
  }
  
  .industries-hero-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .industries-hero {
    padding: 2rem 1.5rem;
  }
  
  .industries-hero-content h2 {
    font-size: 1.6rem;
  }
  
  .industries-hero-icon {
    width: 70px;
    height: 70px;
    font-size: 2.4rem;
  }
  
  .industries-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .industry-image-wrapper {
    height: 150px;
  }
  
  .industry-name {
    font-size: 0.8rem;
  }
  
  .industries-cta-box {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .industries-hero-content h2 {
    font-size: 1.3rem;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .industry-image-wrapper {
    height: 120px;
  }
  
  .industry-name {
    font-size: 0.7rem;
  }
  
  .industry-overlay {
    padding: 1rem 0.5rem 0.6rem;
    min-height: 40px;
  }
  
  .industries-cta-content h2 {
    font-size: 1.3rem;
  }
  
}