/* ========================================
   Vector Fire — Main Stylesheet
   Mobile-first responsive design
   ======================================== */

/* ---------- Reset & Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1C1C1C;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #29ABE2; text-decoration: none; transition: color .2s; }
a:hover { color: #F9B612; }
ul { list-style: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  color: #1C1C1C;
}

h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.375rem; font-weight: 600; margin-bottom: .75rem; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }

@media(min-width:768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.625rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .25s, color .25s;
  text-align: center;
}

.btn-primary {
  background: #E84325;
  color: #FFFFFF;
}
.btn-primary:hover { background: #F9B612; color: #FFFFFF; }

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn-secondary:hover { background: #FFFFFF; color: #1A1A1A; }

.btn-outline {
  background: transparent;
  color: #E84325;
  border: 2px solid #E84325;
}
.btn-outline:hover { background: #E84325; color: #FFFFFF; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: #111111;
  color: #FFFFFF;
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-left a { color: #FFFFFF; font-size: .85rem; }
.top-bar-left a:hover { color: #29ABE2; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a { color: #FFFFFF; }
.top-bar-right a:hover { color: #29ABE2; }
.top-bar-right svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Header / Navbar ---------- */
.site-header {
  background: #1A1A1A;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 90px;
}
.nav-logo img { height: 80px; width: auto; }

/* Desktop Nav */
.nav-menu { display: none; align-items: center; gap: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 24px 14px;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: #F9B612; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1A1A1A;
  min-width: 280px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  z-index: 1001;
}
.nav-menu > li:hover .nav-dropdown,
.nav-menu > li.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: #CCCCCC;
  font-size: .9rem;
  transition: color .2s, padding-left .2s;
}
.nav-dropdown a:hover { color: #F9B612; padding-left: 26px; }

/* Quote Button in Nav */
.nav-cta {
  margin-left: 16px;
}
.nav-cta .btn { padding: 10px 20px; font-size: .875rem; white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #1A1A1A;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-menu.open { max-height: 2000px; }
.mobile-menu a {
  display: block;
  padding: 12px 20px;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:hover { color: #F9B612; }
.mobile-menu .mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.mobile-menu .mobile-dropdown-toggle::after {
  content: '+';
  font-size: 1.25rem;
  color: #29ABE2;
  transition: transform .3s;
}
.mobile-menu .mobile-dropdown-toggle.open::after { content: '−'; }
.mobile-menu .mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-menu .mobile-sub.open { max-height: 1000px; }
.mobile-menu .mobile-sub a {
  padding-left: 36px;
  font-size: .875rem;
  font-weight: 400;
  text-transform: none;
  color: #CCCCCC;
}
.mobile-cta { padding: 16px 20px; }
.mobile-cta .btn { width: 100%; text-align: center; }

@media(min-width:992px) {
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .nav-menu { display: flex; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: #1A1A1A;
  padding: 12px 0;
  font-size: .85rem;
}
.breadcrumb a { color: #29ABE2; }
.breadcrumb span { color: #666; margin: 0 6px; }
.breadcrumb .current { color: #999; }

/* ---------- Hero Sections ---------- */
.hero {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.95), rgba(26,26,26,.8));
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #FFFFFF; margin-bottom: 1rem; }
.hero p { color: #CCCCCC; font-size: 1.125rem; max-width: 720px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .trust-badge {
  display: inline-block;
  margin-top: 2rem;
  padding: 8px 20px;
  background: rgba(249,182,18,.12);
  border: 1px solid rgba(249,182,18,.3);
  border-radius: 4px;
  color: #F9B612;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Section Utility ---------- */
.section { padding: 60px 0; }
.section-gray { background: #F5F5F5; }
.section-dark { background: #1A1A1A; color: #FFFFFF; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #FFFFFF; }
.section-center { text-align: center; }

@media(min-width:768px) { .section { padding: 80px 0; } }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: #FFFFFF;
  padding: 40px 0;
  border-bottom: 1px solid #E0E0E0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-bar-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-bar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(41,171,226,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-bar-icon svg { width: 28px; height: 28px; fill: #29ABE2; }
.trust-bar-item p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  color: #1C1C1C;
  margin: 0;
}

@media(min-width:768px) {
  .trust-bar-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; gap: 30px; }
.grid-3 { display: grid; gap: 30px; }
.grid-4 { display: grid; gap: 24px; }

@media(min-width:768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:992px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(41,171,226,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 28px; height: 28px; fill: #29ABE2; }

/* Industry Tiles */
.industry-tile {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.industry-tile:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.industry-tile .tile-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(41,171,226,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.industry-tile .tile-icon svg { width: 32px; height: 32px; fill: #29ABE2; }
.industry-tile h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.industry-tile .btn { font-size: .8rem; padding: 8px 16px; }

/* Value Cards */
.value-card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  border-top: 4px solid #E84325;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.value-card h3 { color: #E84325; margin-bottom: 12px; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: #1A1A1A;
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F9B612;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  color: #CCCCCC;
  font-size: .95rem;
  font-weight: 500;
}

@media(min-width:768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item .stat-number { font-size: 3.25rem; }
}

/* ---------- Licensing Bar ---------- */
.licensing-section { padding: 50px 0; }
.licensing-section.section-dark { border-top: 3px solid #E84325; }
.licensing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.license-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 12px 20px;
  color: #CCCCCC;
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}
.section-gray .license-badge {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  color: #1C1C1C;
}

/* ---------- Vendor Logos ---------- */
.vendor-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.vendor-box {
  width: 220px;
  height: 100px;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1C1C1C;
  text-transform: uppercase;
}

/* ---------- Forms ---------- */
.form-section { padding: 60px 0; }
.form-grid { display: grid; gap: 40px; }

@media(min-width:768px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-block h3 { margin-bottom: 16px; }
.contact-info-block p { margin-bottom: 8px; }
.contact-info-block .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-info-block .info-item svg,
.inline-contact-info .info-item svg { width: 20px; height: 20px; fill: #29ABE2; flex-shrink: 0; margin-top: 2px; }

.form-wrap {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.section-dark .form-wrap { background: #2A2A2A; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: #1C1C1C;
}
.section-dark .form-group label { color: #CCCCCC; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  background: #FFFFFF;
  color: #1C1C1C;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #29ABE2;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  gap: 16px;
}
@media(min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; }

.form-note {
  font-size: .8rem;
  color: #999;
  margin-top: 10px;
}

/* ---------- Photo Placeholders ---------- */
.photo-placeholder {
  background: #3A3A3A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  min-height: 220px;
}

.photo-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  background: #2A2A2A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCCCCC;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  height: 300px;
  margin-top: 20px;
  border: 1px solid #444;
}

/* ---------- Content Lists ---------- */
.service-link-list { margin-bottom: 1.5rem; }
.service-link-list li { padding: 6px 0; }
.service-link-list li::before { content: '→ '; color: #E84325; font-weight: 700; }
.service-link-list li a { font-weight: 500; }

.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #29ABE2;
  font-weight: 700;
}

.numbered-list { counter-reset: steps; }
.numbered-list li {
  padding: 12px 0 12px 48px;
  position: relative;
  counter-increment: steps;
  border-bottom: 1px solid #E0E0E0;
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 10px;
  width: 32px;
  height: 32px;
  background: #E84325;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
}

.bullet-list li {
  padding: 4px 0 4px 20px;
  position: relative;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: #E84325;
  border-radius: 50%;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.blog-card-img {
  background: #3A3A3A;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-card-body { padding: 24px; }
.blog-card-body h3 { text-transform: none; margin-bottom: 12px; }
.blog-card-body h3 a { color: #1C1C1C; }
.blog-card-body h3 a:hover { color: #E84325; }
.blog-card-body p { font-size: .95rem; color: #555; }
.blog-card-meta { font-size: .8rem; color: #999; margin-bottom: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1A1A1A;
  color: #CCCCCC;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media(min-width:768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; } }

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 100px; width: auto; }
.footer-tagline {
  font-style: italic;
  color: #999;
  margin-bottom: 16px;
  font-size: .95rem;
}
.footer-col ul li { padding: 3px 0; }
.footer-col ul li a { color: #CCCCCC; font-size: .9rem; }
.footer-col ul li a:hover { color: #F9B612; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .9rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: #29ABE2; flex-shrink: 0; margin-top: 3px; }

.footer-licensing {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .8rem;
  color: #888;
  line-height: 1.8;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: #888;
}
.footer-bottom a { color: #29ABE2; }

/* ---------- Inline Quote (Area pages small form) ---------- */
.inline-contact-block {
  display: grid;
  gap: 30px;
}
@media(min-width:768px) { .inline-contact-block { grid-template-columns: 1fr 1fr; } }

/* ---------- Split Content ---------- */
.split { display: grid; gap: 40px; align-items: start; }
@media(min-width:768px) { .split { grid-template-columns: 1fr 1fr; } }

/* ---------- Why Choose Bullets ---------- */
.why-list { display: grid; gap: 16px; }
@media(min-width:768px) { .why-list { grid-template-columns: 1fr 1fr; } }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232,67,37,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 20px; height: 20px; fill: #E84325; }
.why-item p { margin: 0; font-size: .95rem; }
.why-item strong { color: #1C1C1C; }

/* ---------- Privacy Policy ---------- */
.privacy-content h2 { text-transform: none; font-size: 1.5rem; margin-top: 2rem; }
.privacy-content h3 { text-transform: none; font-size: 1.25rem; margin-top: 1.5rem; }
.privacy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 1rem; }
.privacy-content li { padding: 2px 0; }

/* ---------- Google Map iFrame ---------- */
.map-embed { border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.map-embed iframe { width: 100%; height: 300px; border: 0; }

/* ---------- Subtle Violet Accent ---------- */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #E84325, #7B3FA0, #29ABE2);
  width: 60px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.section-center .accent-bar { margin-left: auto; margin-right: auto; }

/* ---------- Utility ---------- */
.text-gold { color: #F9B612; }
.text-blue { color: #29ABE2; }
.text-red { color: #E84325; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ---------- Responsive Helpers ---------- */
@media(max-width:767px) {
  .hide-mobile { display: none; }
}
@media(min-width:768px) {
  .hide-desktop { display: none; }
}
