/* ===== SMELTING FACILITIES & ASSAY PAGE ===== */

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

/* ===== HERO SECTION (PARALLAX) ===== */
.smelting-hero {
  position: relative;
  background-color: var(--gb-navy);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 40, 79, 0.85);
  display: flex;
  align-items: center;
}

.smelting-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  text-align: center;
}

.smelting-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gb-white);
  margin-bottom: 2rem;
}

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

.smelting-hero-inner a {
  color: var(--gb-gold);
  text-decoration: underline;
}

/* ===== MELTING SERVICE SECTION ===== */
.smelting-service {
  background: var(--gb-white);
  padding: 4rem 0;
}

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

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

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-column h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-color: var(--gb-gold);
  text-underline-offset: 4px;
}

.column-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gb-text);
  margin-bottom: 1.5rem;
}

/* FAQ Accordion Items */
.faq-item {
  border-bottom: 1px solid var(--gb-border);
  margin-bottom: 0.5rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gb-navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gb-gold);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gb-navy);
  color: var(--gb-white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0.5rem 0 1rem 2.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gb-text);
}

.faq-answer p {
  margin-bottom: 0.5rem;
}

/* ===== PAYMENT METHODS SECTION ===== */
.smelting-payments {
  background: var(--gb-gray);
  padding: 4rem 0;
}

.payment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.payment-card {
  background: var(--gb-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.payment-icon {
  margin-bottom: 1.5rem;
}

.payment-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.payment-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

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

.btn-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gb-navy);
  text-decoration: none;
}

.btn-link:hover {
  color: var(--gb-gold);
}

/* ===== COMPLEMENTARY SERVICES SECTION ===== */
.smelting-complementary {
  background: var(--gb-white);
  padding: 4rem 0;
}

.comp-columns {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.comp-card {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.comp-card-reverse {
  flex-direction: row-reverse;
}

.comp-image {
  flex-shrink: 0;
  width: 35%;
}

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

.comp-content {
  flex: 1;
}

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

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

.comp-content .btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.comp-content .btn-outline {
  color: var(--gb-navy);
  border: 2px solid var(--gb-navy);
  background: transparent;
}

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

/* ===== WHY CHOOSE GERRARDS SECTION ===== */
.smelting-why {
  background: var(--gb-navy);
  padding: 4rem 0;
}

.smelting-why h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.smelting-why blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 800px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gb-gold);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

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

  .comp-card,
  .comp-card-reverse {
    flex-direction: column;
  }

  .comp-image {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .smelting-hero {
    background-attachment: scroll;
    min-height: 300px;
  }

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

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

  .service-columns,
  .payment-cards,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .smelting-hero-inner {
    padding: 3rem 0;
  }

  .smelting-service,
  .smelting-payments,
  .smelting-complementary,
  .smelting-why {
    padding: 3rem 0;
  }

  .smelting-why blockquote {
    font-size: 1rem;
  }
}
