/* =========================================
   MoldFixes.com — Main Stylesheet v3
   Mobile overflow fixed + Geo button fixed
   ========================================= */

:root {
  --navy:        #0d2b55;
  --navy-dark:   #081d3a;
  --navy-mid:    #153568;
  --blue:        #1a5ca8;
  --blue-light:  #2070cc;
  --orange:      #e85d04;
  --orange-dark: #c44f00;
  --orange-light:#ff6b1a;
  --green:       #1a8a4a;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-gray:  #e8ecf2;
  --mid-gray:    #b0b8c9;
  --text-dark:   #1a2233;
  --text-body:   #3a4557;
  --text-light:  #6b7a96;
  --shadow-sm:   0 2px 8px rgba(13,43,85,0.10);
  --shadow-md:   0 4px 20px rgba(13,43,85,0.15);
  --shadow-lg:   0 8px 40px rgba(13,43,85,0.20);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --transition:  all 0.25s ease;
}

/* =========================================
   GLOBAL RESET + MOBILE OVERFLOW FIX
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

section,
header,
footer,
main,
.container,
.geo-inner,
.header-inner {
  max-width: 100%;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--text-body);
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
}

.section-pad {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--off-white);
}

.bg-dark-section {
  background-color: var(--navy-dark);
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  max-width: 100%;
}

.btn-primary {
  background: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232,93,4,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =========================================
   SECTION HEADER
   ========================================= */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.section-header-light h2 {
  color: var(--white);
}

.section-header-light p {
  color: rgba(255,255,255,0.75);
}

.section-tag {
  display: inline-block;
  background: rgba(26,92,168,0.1);
  color: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(26,92,168,0.2);
}

.section-header-light .section-tag,
.section-tag-light {
  background: rgba(232,93,4,0.2);
  color: var(--orange-light);
  border-color: rgba(232,93,4,0.3);
}

/* ==========================================
   GEO BANNER
   ========================================== */

.geo-banner {
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--orange);
  position: relative;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.geo-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.geo-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  min-width: 0;
  flex: 1 1 auto;
}

.geo-left .fa-map-marker-alt {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

#geo-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.geo-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.geo-phone {
  color: var(--orange-light);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.geo-phone:hover {
  color: var(--white);
}

#geo-change {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  cursor: pointer;
}

#geo-change:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* New geo button from JS */
.geo-change-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  display: inline;
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.geo-change-btn:hover {
  opacity: 0.8;
}

/* ==========================================
   HEADER
   ========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
}

.site-header.scrolled {
  background: rgba(13,43,85,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
  min-width: 0;
}

/* Logo */
.logo {
  min-width: 0;
  flex-shrink: 1;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-text strong {
  color: var(--orange);
}

.logo-dot {
  color: var(--mid-gray);
  font-weight: 400;
  font-size: 1rem;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav ul li a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav ul li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Header CTA block */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.header-call-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 0;
}

.btn-call {
  padding: 10px 18px;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.25;
  max-width: 100%;
}

.call-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.call-info small {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.call-info > :last-child {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Geo line under phone in header */
.header-geo-line {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  padding-right: 4px;
  max-width: 100%;
}

.header-geo-line .fa-map-marker-alt {
  color: var(--orange);
  font-size: 0.75rem;
}

#header-city {
  color: rgba(255,255,255,0.7);
  overflow-wrap: anywhere;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,29,58,0.93) 0%,
    rgba(13,43,85,0.83) 55%,
    rgba(13,43,85,0.52) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 780px;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,4,0.25);
  border: 1px solid rgba(232,93,4,0.5);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-sub strong {
  color: var(--white);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hf-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.hf-item .fa-check-circle {
  color: var(--orange);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================
   ALERT STRIP
   ========================================== */

.alert-strip {
  background: #fef3cd;
  border-top: 3px solid #f5a623;
  border-bottom: 3px solid #f5a623;
  padding: 14px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.alert-strip .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: #7a4a00;
}

.alert-strip .fa-exclamation-triangle {
  color: #e07000;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.alert-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--orange-dark);
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  margin-left: auto;
  transition: var(--transition);
}

.alert-link:hover {
  color: var(--navy);
}

/* ==========================================
   STATS BAR
   ========================================== */

.stats-bar {
  background: var(--navy);
  padding: 48px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-width: 0;
}

.stat-item {
  text-align: center;
  position: relative;
  min-width: 0;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-num {
  display: inline;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--orange-light);
}

.stat-label {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

/* Geo stat item */
.stat-item-geo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-geo-icon {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 6px;
}

.stat-geo-city {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
  max-width: 160px;
  overflow-wrap: anywhere;
}

/* ==========================================
   SERVICES
   ========================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-width: 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.sc-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}

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

.service-card:hover .sc-img img {
  transform: scale(1.05);
}

.sc-featured {
  border-color: var(--orange);
  border-width: 2px;
}

.sc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.sc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sc-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,92,168,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.sc-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.sc-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.steps-grid {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  min-width: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  position: relative;
  min-width: 0;
}

.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(26,92,168,0.1);
  line-height: 1;
  margin-bottom: -10px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.step-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.step-item p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-light);
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--mid-gray);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hiw-cta {
  text-align: center;
}

/* ==========================================
   WHY US
   ========================================== */

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
}

.why-img-col {
  position: relative;
  min-width: 0;
}

.why-img-col > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100% + 20px);
}

.why-badge {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  white-space: nowrap;
}

.why-badge i {
  color: var(--orange);
  font-size: 1rem;
}

.why-text-col {
  min-width: 0;
}

.why-text-col .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.why-text-col h2 {
  margin-bottom: 20px;
}

.why-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.why-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  line-height: 1.6;
  min-width: 0;
}

.why-list li .fa-check-circle {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-list li strong {
  color: var(--navy);
}

/* ==========================================
   MOLD TYPES
   ========================================== */

.mold-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  min-width: 0;
}

.mold-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  min-width: 0;
}

.mold-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.mold-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid rgba(255,255,255,0.2);
}

.mc-black  { background: #2a2a2a; }
.mc-green  { background: #3d7a3d; }
.mc-white  { background: #c8c8c8; }
.mc-grey   { background: #6a7a8a; }
.mc-brown  { background: #7a5c3a; }
.mc-yellow { background: #c8a840; }

.mold-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
}

.mold-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.risk-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-high {
  background: rgba(204,34,34,0.25);
  color: #ff7070;
  border: 1px solid rgba(204,34,34,0.4);
}

.risk-medium {
  background: rgba(245,166,35,0.2);
  color: #f5c060;
  border: 1px solid rgba(245,166,35,0.35);
}

/* ==========================================
   FAQ
   ========================================== */

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
  cursor: pointer;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-q.open {
  color: var(--orange);
}

.faq-q .fa-plus {
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-q.open .fa-plus {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
}

.faq-a.open {
  display: block;
}

.faq-a p {
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ==========================================
   CONTACT CTA
   ========================================== */

.contact-cta {
  background: var(--navy);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.contact-single-wrap {
  display: flex;
  justify-content: center;
}

.contact-single {
  max-width: 760px;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  min-width: 0;
}

.contact-single .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.contact-single h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-single > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-single > p strong {
  color: var(--white);
}

.contact-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  min-width: 200px;
}

.contact-item i {
  width: 48px;
  height: 48px;
  background: rgba(232,93,4,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 4px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a {
  color: var(--orange-light);
  font-size: 1.15rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--white);
}

.contact-item span {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
}

.contact-main-btn {
  margin: 0 auto;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 20px;
  min-width: 0;
}

.footer-logo .logo-text {
  font-size: 1.3rem;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 16px 0 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-light);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-phone:hover {
  color: var(--white);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange-light);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list li i {
  color: var(--orange);
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: var(--orange-light);
  transition: var(--transition);
  overflow-wrap: anywhere;
}

.footer-contact-list li a:hover {
  color: var(--white);
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
}

.cert-badge i {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-nav-sm {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav-sm a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-nav-sm a:hover {
  color: rgba(255,255,255,0.8);
}

.disclaimer-bar {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.disclaimer-bar p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.disclaimer-bar strong {
  color: rgba(255,255,255,0.5);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .main-nav ul li a {
    padding: 6px 8px;
    font-size: 0.84rem;
  }

  .header-inner {
    gap: 12px;
  }
}

@media (max-width: 960px) {
  .section-pad {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0;
  }

  .step-arrow {
    display: none;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-img-col > img {
    height: 320px;
  }

  .why-badge-box {
    right: 0;
    bottom: -10px;
  }

  .mold-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Mobile Header Fix */
  .header-inner {
    height: 68px;
    gap: 8px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .logo-text {
    font-size: 1.16rem;
  }

  .logo-dot {
    font-size: 0.85rem;
  }

  .header-cta {
    gap: 8px;
    margin-left: auto;
  }

  .header-call-block {
    align-items: center;
  }

  .btn-call {
    padding: 8px 10px;
    gap: 6px;
    border-width: 1px;
    max-width: 128px;
    overflow: hidden;
  }

  .btn-call i {
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .call-info small {
    display: none;
  }

  .call-info > :last-child {
    font-size: 0.82rem;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Mobile Nav */
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background: var(--navy-dark);
    z-index: 800;
    padding: 100px 24px 32px;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul li a {
    font-size: 1.2rem;
    padding: 12px 16px;
    display: block;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .header-geo-line {
    display: none;
  }

  .hero {
    min-height: 540px;
  }

  .hero-content {
    padding: 60px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .mold-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px;
  }

  .alert-strip .alert-link {
    margin-left: 0;
  }

  .contact-items {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .geo-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .geo-left {
    width: 100%;
    align-items: flex-start;
  }

  .geo-right {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .geo-phone {
    font-size: 0.9rem;
  }

  .geo-change-btn {
    display: inline-block;
    margin-left: 0;
    margin-top: 2px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item::after {
    display: none !important;
  }

  .why-badge-box {
    position: static;
    margin-top: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .why-badge {
    white-space: normal;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .btn-call {
    padding: 7px 8px;
    max-width: 112px;
  }

  .call-info > :last-child {
    font-size: 0.78rem;
    max-width: 78px;
  }

  .hamburger {
    width: 34px;
    height: 34px;
  }

  .contact-item a {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .footer-bottom .container {
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-inner {
    height: 64px;
    gap: 6px;
  }

  .logo a {
    gap: 7px;
  }

  .logo-icon {
    width: 31px;
    height: 31px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .btn-call {
    max-width: 96px;
    padding: 7px 7px;
  }

  .btn-call i {
    display: none;
  }

  .call-info > :last-child {
    max-width: 78px;
    font-size: 0.76rem;
  }

  .hamburger {
    width: 32px;
    height: 32px;
  }

  .hero-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .btn-lg {
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .geo-banner {
    display: none;
  }
}