/* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #f5f5f5;
  line-height: 1.6;
  font-size: 16px;
}

/* =========================
   LINKS
========================= */
a {
  color: #c9a14a;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* Phone number links - white */
a[href^="tel:"] {
  color: #fff !important;
  font-weight: bold;
}

a[href^="tel:"]:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

/* =========================
   NAVIGATION
========================= */
.main-nav {
  background: #000;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #c9a14a;
  width: 100%;
}

.main-nav a {
  color: #c9a14a;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Phone number styling in nav */
.main-nav a[href^="tel:"] {
  background: #c9a14a;
  color: #000 !important;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.main-nav a[href^="tel:"]:hover {
  background: #e0b85a;
  text-decoration: none;
}

/* =========================
   HERO
========================= */
.hero {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.9)
    ),
    url("hero-welding.jpg") center / cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #c9a14a;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero img {
  max-width: 220px;
  margin: 0 auto 20px auto;
  display: block;
}

.hero h1 {
  color: #c9a14a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 36px;
  margin: 0 0 10px 0;
}

.hero p {
  font-size: 18px;
  margin: 10px 0;
}

/* =========================
   HEADER (Page Header)
========================= */
header {
  width: 100%;
  max-width: 100%;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header h1 {
  color: #c9a14a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 32px;
  margin: 0 0 10px 0;
  text-align: center;
}

header p {
  font-size: 18px;
  margin: 0 0 20px 0;
  color: #f5f5f5;
  text-align: center;
}

/* =========================
   CTA BUTTON
========================= */
.cta {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 30px;
  background: #c9a14a;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta:hover {
  background: #e0b85a;
  text-decoration: none;
}

/* =========================
   SECTIONS - REGULAR
========================= */
section {
  width: 100%;
  max-width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section h2 {
  max-width: 1100px;
  color: #c9a14a;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
  text-align: center;
}

section p {
  max-width: 1100px;
  text-align: center;
  margin: 0 0 15px 0;
}

section ul {
  max-width: 1100px;
  width: 100%;
  list-style: none;
  text-align: left;
  margin: 20px auto 0;
  padding: 0 20px;
}

section ul li {
  margin: 10px 0;
}

/* =========================
   SECTIONS WITH BACKGROUNDS
========================= */
.section-alt,
.section-dark,
.gallery-section,
.faq-section,
.training-cta,
.testimonials {
  width: 100%;
  padding: 40px 20px;
}

.section-alt {
  background: #0d0d0d;
}

.section-dark {
  background: #000;
  border-top: 2px solid #c9a14a;
  border-bottom: 2px solid #c9a14a;
}

.gallery-section {
  background: #0d0d0d;
}

.testimonials {
  background: #0d0d0d;
}

.faq-section {
  background: #000;
  border-top: 2px solid #c9a14a;
  border-bottom: 2px solid #c9a14a;
}

.training-cta {
  background: #0d0d0d;
}

/* =========================
   SERVICES
========================= */
.services {
  width: 100%;
}

section ul {
  list-style: disc;
  list-style-position: inside;
  max-width: 600px;
  margin: 20px auto;
  padding-left: 20px;
  text-align: left;
}

section li {
  margin: 12px 0;
}

.services li {
  background: #111;
  border-left: 4px solid #c9a14a;
  padding: 14px 16px;
  text-align: left;
  list-style: none;
}

/* =========================
   AREAS
========================= */
.areas {
  width: 100%;
}

.areas p {
  text-align: center;
  font-size: 16px;
  max-width: 1100px;
}

/* =========================
   TESTIMONIALS - AUTO SCROLLING
========================= */
.testimonials {
  background: #0d0d0d;
  width: 100%;
  padding: 40px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  margin: 20px auto;
  max-width: 1100px;
  padding: 10px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c9a14a #111;
}

/* For Chrome/Safari */
.testimonial-grid::-webkit-scrollbar {
  height: 8px;
}

.testimonial-grid::-webkit-scrollbar-track {
  background: #111;
  border-radius: 10px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
  background: #c9a14a;
  border-radius: 10px;
}

.testimonial-grid::-webkit-scrollbar-thumb:hover {
  background: #e0b85a;
}

blockquote {
  background: #111;
  padding: 20px;
  border-left: 4px solid #c9a14a;
  font-style: italic;
  margin: 0;
  flex: 0 0 300px;
  min-width: 300px;
}

blockquote p {
  text-align: left;
  margin: 0 0 15px 0;
  font-style: italic;
}

blockquote footer {
  margin-top: 12px;
  font-style: normal;
  color: #aaa;
  text-align: center;
}

/* =========================
   GALLERY
========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px auto 0;
  max-width: 1100px;
  width: 100%;
}

.gallery a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid #c9a14a;
  background: #000;
}

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

.gallery a:hover img {
  transform: scale(1.05);
}

/* =========================
   FAQ
========================= */
.faq-section p {
  text-align: left;
  margin: 20px auto;
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}

.faq-section strong {
  color: #c9a14a;
}

/* =========================
   FOOTER - CENTERED & PROFESSIONAL
========================= */
footer {
  background: #000;
  padding: 40px 20px;
  border-top: 4px solid #c9a14a;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer > * {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

footer p {
  margin: 10px auto;
  padding: 0;
  text-align: center;
  font-size: 14px;
}

footer span {
  display: block;
  margin: 6px auto;
  color: #aaa;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #c9a14a;
  text-decoration: none;
  padding: 5px;
  display: inline-block;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e0b85a;
  text-decoration: underline;
}

.disclosure {
  margin-top: 12px;
  font-size: 12px;
  color: #888;
  text-align: center;
}

/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-choose-us {
  width: 100%;
  padding: 40px 20px;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px auto;
  max-width: 1100px;
  width: 100%;
}

.why-card {
  background: #111;
  padding: 25px;
  border-left: 4px solid #c9a14a;
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
  border-left-color: #e0b85a;
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.2);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.why-card h3 {
  color: #c9a14a;
  font-size: 18px;
  margin: 0 0 12px 0;
  text-align: center;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #f5f5f5;
  text-align: center;
  margin: 0;
}

.why-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #0d0d0d;
  border-radius: 4px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.why-cta p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #c9a14a;
  font-weight: bold;
}

.why-cta .cta {
  margin: 0 15px;
}

/* =========================
   SAME-DAY RESPONSE CALLOUT
========================= */
.same-day-banner {
  background: linear-gradient(135deg, #c9a14a 0%, #e0b85a 100%);
  color: #000;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin: 20px 0;
  border-radius: 4px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 161, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 161, 74, 0);
  }
}

.same-day-banner a {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}

.same-day-banner a:hover {
  text-decoration: none;
}

/* =========================
   BEFORE & AFTER SECTION - MOBILE FRIENDLY
========================= */

.before-after-grid {
  max-width: 1100px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

.before-after-card {
  background: #0d0d0d;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #c9a14a;
  display: flex;
  flex-direction: column;
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: auto;
  min-height: 250px;
  background: #000;
}

.before-after-images.single-image {
  grid-template-columns: 1fr;
  height: auto;
  min-height: 250px;
}

.before-image-container {
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.before-image-container.full-width {
  min-height: 300px;
}

.before-after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 12px;
  z-index: 10;
}

.before-label {
  background: #c9a14a;
  color: #000;
}

.after-label {
  background: #4CAF50;
  color: #fff;
}

.combined-label {
  background: #c9a14a;
  color: #000;
}

.before-after-content {
  padding: 20px;
  background: #111;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.before-after-content h3 {
  color: #c9a14a;
  margin: 0 0 12px 0;
  font-size: 16px;
  padding: 0;
}

.before-after-content p {
  font-size: 13px;
  margin: 0;
  color: #f5f5f5;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE - TABLET (768px and below)
========================= */

@media (max-width: 768px) {
  .main-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-nav a {
    font-size: 12px;
    padding: 0;
  }

  .main-nav a[href^="tel:"] {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero img {
    max-width: 180px;
  }

  .hero h1 {
    font-size: 28px;
  }

  header {
    padding: 30px 15px;
  }

  header h1 {
    font-size: 28px;
  }

  section {
    padding: 25px 15px;
  }

  section h2 {
    font-size: 24px;
  }

  .cta {
    display: block;
    width: 90%;
    margin: 12px auto;
    padding: 18px 30px !important;
    font-size: 16px !important;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px auto;
    padding: 0 15px;
  }

  .before-after-images {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 200px;
  }

  .before-after-images.single-image {
    grid-template-columns: 1fr;
    min-height: 200px;
  }

  .before-image-container {
    min-height: 200px;
  }

  .before-image-container.full-width {
    min-height: 200px;
  }

  .before-after-label {
    font-size: 11px;
    padding: 5px 10px;
    top: 8px;
    left: 8px;
  }

  .before-after-content {
    padding: 15px;
  }

  .before-after-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .before-after-content p {
    font-size: 12px;
  }

  /* Testimonials on mobile */
  blockquote {
    flex: 0 0 90vw;
    max-width: 90vw;
    min-width: 90vw;
  }

  /* Why choose us on mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-icon {
    font-size: 32px;
  }

  .why-card h3 {
    font-size: 16px;
  }

  .why-card p {
    font-size: 13px;
  }

  .why-cta .cta {
    display: block;
    width: 90%;
    margin: 10px auto;
  }

  /* Footer on tablet */
  footer {
    padding: 30px 15px;
  }

  footer span {
    font-size: 13px;
  }

  /* Forms on tablet */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    width: 100% !important;
    padding: 12px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
  }

  /* Navigation accessibility */
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    padding: 8px 10px;
    margin: 4px;
    font-size: 12px;
  }
}

/* =========================
   RESPONSIVE - MOBILE (480px and below)
========================= */

@media (max-width: 480px) {
  .main-nav {
    gap: 8px;
    padding: 10px 15px;
  }

  .main-nav a {
    font-size: 11px;
    padding: 0;
  }

  .main-nav a[href^="tel:"] {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 26px;
  }

  header {
    padding: 20px 10px;
  }

  header h1 {
    font-size: 24px;
  }

  header p {
    font-size: 16px;
  }

  section {
    padding: 20px 10px;
  }

  section h2 {
    font-size: 22px;
  }

  section p {
    font-size: 14px;
  }

  .cta {
    padding: 16px 20px !important;
    font-size: 14px !important;
    width: 95%;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px auto;
    padding: 0 10px;
  }

  .before-after-images {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 180px;
  }

  .before-after-images.single-image {
    grid-template-columns: 1fr;
    min-height: 180px;
  }

  .before-image-container {
    min-height: 180px;
    width: 100%;
  }

  .before-image-container.full-width {
    min-height: 180px;
  }

  .before-after-label {
    font-size: 10px;
    padding: 4px 8px;
    top: 6px;
    left: 6px;
  }

  .before-after-content {
    padding: 12px;
  }

  .before-after-content h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .before-after-content p {
    font-size: 11px;
    line-height: 1.4;
  }

  blockquote {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }

  /* Footer on mobile */
  footer {
    padding: 20px 10px;
  }

  footer p {
    font-size: 12px;
  }

  footer span {
    font-size: 12px;
    margin: 4px auto;
  }

  .disclosure {
    font-size: 11px;
  }

  /* Forms on mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
  }

  button,
  a[href],
  input,
  [role="button"] {
    min-height: 44px;
    padding: 10px !important;
  }

  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  h3 {
    font-size: 16px !important;
  }

  nav a {
    padding: 6px 8px;
    margin: 3px;
    font-size: 11px;
  }
}

/* =========================
   MANUFACTURER EXPERTISE SECTION
========================= */

.mfr-section-wrapper {
  background: #0d0d0d;
  border-top: 2px solid #c9a14a;
  border-bottom: 2px solid #c9a14a;
  padding: 50px 20px !important;
  display: block !important;
  text-align: left !important;
}

.mfr-section {
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Barlow', Arial, sans-serif;
}

.mfr-eyebrow {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a14a;
  margin-bottom: 10px !important;
  text-align: left !important;
  max-width: 100% !important;
}

.mfr-title {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: #f5f5f5;
  margin-bottom: 16px !important;
  text-align: left !important;
  max-width: 100% !important;
  letter-spacing: 1px;
}

.mfr-title span {
  color: #c9a14a;
}

.mfr-intro {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.7;
  max-width: 700px !important;
  margin-bottom: 40px !important;
  border-left: 3px solid #c9a14a;
  padding-left: 16px;
  text-align: left !important;
}

/* Spotlight */
.mfr-spotlight-label {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a14a;
  margin-bottom: 14px !important;
  text-align: left !important;
  max-width: 100% !important;
}

.mfr-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 48px;
}

.mfr-spotlight-card {
  background: #111;
  border-top: 3px solid #c9a14a;
  padding: 20px 18px 22px;
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
}

.mfr-spotlight-card:hover {
  background: #1a1a1a;
}

.mfr-badge {
  display: inline-block;
  background: #c9a14a;
  color: #000;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 7px;
  margin-bottom: 10px;
  align-self: flex-start;
  line-height: 1.4;
}

.mfr-badge.mfr-badge-green {
  background: #4a7a4a;
  color: #fff;
}

.mfr-brand {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #f5f5f5;
  margin-bottom: 10px;
  line-height: 1;
}

.mfr-brand-desc {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.6;
  text-align: left !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* Divider */
.mfr-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.mfr-divider-line {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
}

.mfr-divider-text {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  white-space: nowrap;
}

/* All manufacturers intro */
.mfr-all-intro {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px !important;
  font-style: italic;
  text-align: left !important;
  max-width: 100% !important;
}

/* Legend */
.mfr-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.mfr-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}

.mfr-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mfr-legend-featured { background: #c9a14a; }
.mfr-legend-standard { background: #555; }

/* Manufacturer grid */
.mfr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  margin-bottom: 36px;
}

.mfr-item {
  background: #111;
  padding: 10px 14px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #999;
  text-transform: uppercase;
  transition: all 0.15s ease;
}

.mfr-item:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

.mfr-item.mfr-featured {
  color: #c9a14a;
  position: relative;
}

.mfr-item.mfr-featured::after {
  content: '★';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: #c9a14a;
  opacity: 0.7;
}

/* CTA strip */
.mfr-cta-strip {
  background: #111;
  border-left: 4px solid #c9a14a;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mfr-cta-text {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
}

.mfr-cta-text strong {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f5f5f5;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .mfr-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}

@media (max-width: 768px) {
  .mfr-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .mfr-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .mfr-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .mfr-title {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  .mfr-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mfr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mfr-spotlight-card {
    padding: 16px 14px;
  }
  .mfr-section-wrapper {
    padding: 30px 15px !important;
  }
}

/* =========================
   UNIVERSAL RESPONSIVE IMPROVEMENTS
========================= */

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  loading: lazy;
}

/* Accessibility focus states */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #c9a14a;
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Font display optimization */
@font-face {
  font-display: swap;
}

/* Mobile Responsive Fix for Hollow Metal Cards */
@media (max-width: 768px) {
  /* Force all grid containers to single column on tablet and below */
  div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Reduce padding on mobile */
  div[style*="padding: 25px"][style*="border-left: 4px"] {
    padding: 20px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small phones - more aggressive fixes */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 0 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Reduce text on mobile phones */
  [style*="font-size: 16px"] {
    font-size: 14px !important;
  }
  
  [style*="font-size: 14px"] {
    font-size: 12px !important;
  }
}

















