/* ===== INDUSTRIES T2 - PAGE STYLES ===== */

/* Active nav link */
.nav-links .active-link { color: #CD2122 !important; }
.nav-links .active-link::after { width: 100% !important; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1A1A 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,33,34,0.08) 0%, transparent 70%);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.breadcrumb a:hover { color: #FFB236; }
.breadcrumb svg { color: rgba(255,255,255,0.3); }
.breadcrumb span { color: #FFB236; font-weight: 500; }
.page-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.page-hero-desc {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== INTRO ===== */
.industries-intro {
  padding: 80px 0;
  background: #FDFCFA;
}
.industries-intro-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.industries-intro-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
}

/* ===== INDUSTRIES GRID ===== */
.industries-section {
  padding: 100px 0;
  background: #F5F0E8;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.industry-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E8E2D8;
  transition: all 0.4s ease;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border-color: #CD2122;
}
.industry-card-gradient {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.industry-card-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}
.industry-card-gradient svg {
  position: relative;
  z-index: 1;
  opacity: 0.9;
  transition: transform 0.4s ease;
}
.industry-card:hover .industry-card-gradient svg {
  transform: scale(1.15);
}
.industry-card-body {
  padding: 32px 28px;
}
.industry-card-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #101010;
  letter-spacing: -0.01em;
}
.industry-card-body p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 24px;
}
.industry-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CD2122;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}
.industry-card-link:hover { gap: 14px; }
.industry-card-link svg { transition: transform 0.3s; }
.industry-card:hover .industry-card-link svg { transform: translateX(4px); }

/* ===== CTA BANNER ===== */
.industries-cta {
  padding: 100px 0;
  background: #FDFCFA;
}
.industries-cta-inner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1A1A 100%);
  border-radius: 24px;
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.industries-cta-inner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,178,54,0.08) 0%, transparent 70%);
}
.industries-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,178,54,0.15);
  border: 1px solid rgba(255,178,54,0.3);
  color: #FFB236;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.industries-cta-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.industries-cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
}
.industries-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.btn-outline-dark {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  justify-content: center;
}
.btn-outline-dark:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch { display: flex; align-items: center; gap: 8px; margin-left: 16px; flex-shrink: 0; white-space: nowrap; }
.lang-switch a { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: #888; text-decoration: none; transition: color 0.3s; letter-spacing: 0.5px; }
.lang-switch a.active { color: #1A1A1A; font-weight: 700; }
.lang-switch a:hover { color: #CD2122; }
.lang-flag { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; border: 1px solid rgba(0,0,0,0.1); vertical-align: middle; flex-shrink: 0; }
.lang-divider { color: #ccc; font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-cta-inner { padding: 56px 48px; }
}

@media (max-width: 768px) {
  .lang-switch { gap: 4px; font-size: 10px; margin-left: 8px; }
  .lang-switch a { font-size: 10px; gap: 3px; }
  .lang-flag { width: 16px; height: 11px; }
  .lang-divider { display: none; }
  .page-hero { padding: 60px 0 48px; }
  .industries-intro { padding: 60px 0; }
  .industries-section { padding: 80px 0; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-cta { padding: 80px 0; }
  .industries-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
  }
  .industries-cta-actions { width: 100%; }
  .industries-cta-actions a { justify-content: center; }
}

@media (max-width: 480px) {
  .page-hero-title { font-size: 32px; }
  .industry-card-gradient { height: 160px; }
  .industry-card-body { padding: 24px 20px; }
}