/* ===== INDUSTRIAL TRADES PAGE ===== */

/* Remove default padding */
body.page-template-industrial-trades .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* ===== HERO SECTION ===== */
.industrial-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 4rem 0;
}

.industrial-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gb-white);
  margin-bottom: 1.5rem;
  text-align: center;
}

.industrial-hero-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.industrial-hero-inner p:last-child {
  margin-bottom: 0;
}

/* ===== INDUSTRIES GRID SECTION ===== */
.industrial-grid {
  background: var(--gb-white);
  padding: 4rem 0;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gb-gold);
  margin: 1rem auto 0;
}

/* Industry Cards Grid */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.industry-card {
  background: var(--gb-white);
  border: 1px solid var(--gb-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 0.75rem;
  text-decoration: underline;
  text-decoration-color: var(--gb-gold);
  text-underline-offset: 4px;
}

.card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gb-text);
  margin-bottom: 1rem;
}

.card-content .btn-outline {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gb-navy);
  border: 2px solid var(--gb-navy);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.card-content .btn-outline:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
}

/* ===== QUOTE SECTION ===== */
.industrial-quote {
  background: var(--gb-navy);
  padding: 3rem 0;
}

.industrial-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--gb-white);
  text-align: center;
  margin: 0;
  padding: 0 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.industrial-quote blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gb-gold);
  position: absolute;
  top: -1.5rem;
  left: 0;
  line-height: 1;
}

/* ===== RETAILERS SECTION ===== */
.industrial-retailers {
  background: var(--gb-gray);
  padding: 4rem 0;
}

.industrial-retailers-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.retailers-image {
  flex-shrink: 0;
  width: 40%;
}

.retailers-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.retailers-content {
  flex: 1;
}

.retailers-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1.5rem;
}

.retailers-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 1rem;
}

.retailers-content p:last-child {
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .industrial-retailers-inner {
    flex-direction: column;
  }

  .retailers-image {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .industrial-hero {
    padding: 3rem 0;
  }

  .industrial-hero h1 {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .industry-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-image {
    aspect-ratio: 16/9;
  }

  .industrial-quote blockquote {
    font-size: 1.1rem;
    padding: 0;
  }

  .industrial-quote blockquote::before {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .industrial-retailers {
    padding: 3rem 0;
  }

  .retailers-content h2 {
    font-size: 1.25rem;
  }
}
