:root {
  --primary-yellow: #FFC400;
  --light-yellow: #FFD54F;
  --accent-green: #4CAF50;
  --dark-green: #388E3C;
  --dark-black: #111111;
  --medium-black: #222;
  --text-gray: #666;
  --light-gray: #f8f9fa
}
* {
  box-sizing: border-box
}
body {
  font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  line-height: 1.6;
  color: var(--dark-black);
  margin: 0;
  padding: 0
}
.utility-bar {
  background: var(--dark-black);
  color: #fff;
  padding: 8px 0;
  font-size: 14px
}
.utility-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 15px
}
.province-selector-small {
  background: var(--medium-black);
  color: #fff;
  border: 1px solid #444;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px
}
.lang-toggle {
  background: 0 0;
  border: 1px solid #444;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer
}
.phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500
}
.phone-link:hover {
  color: var(--primary-yellow)
}
.utility-cta {
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px
}
.utility-cta:hover {
  color: var(--light-yellow)
}
.small-banner {
  background: var(--primary-yellow);
  color: var(--dark-black);
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px
}
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1)
}
.logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px
}
.logo:hover {
  color: var(--dark-black)
}
.logo-icon {
  color: var(--primary-yellow)
}
.navbar-nav .nav-link {
  color: var(--dark-black);
  font-weight: 500;
  padding: 8px 16px;
  transition: color .3s ease
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-yellow)
}
.btn-list-business {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s ease
}
.btn-list-business:hover {
  background: var(--light-yellow);
  color: var(--dark-black);
  transform: translateY(-1px)
}
.hero-section-featured {
  background: linear-gradient(135deg,var(--light-gray) 0,#fff 100%);
  padding: 120px 0 80px;
  text-align: center
}
.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 20px;
  line-height: 1.2
}
.hero-subtitle {
  font-size: 22px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}
.breadcrumb {
  background: 0 0;
  padding: 0;
  margin-bottom: 0
}
.breadcrumb-item {
  color: var(--text-gray)
}
.breadcrumb-item.active {
  color: var(--dark-black);
  font-weight: 500
}
.breadcrumb-item a {
  color: var(--text-gray);
  text-decoration: none
}
.breadcrumb-item a:hover {
  color: var(--primary-yellow)
}
.search-section {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  margin-bottom: 40px
}
.form-input {
  border: 2px solid #e0e0e0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color .3s ease
}
.form-input:focus {
  border-color: var(--primary-yellow);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255,196,0,.2)
}
.btn-search-primary {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s ease
}
.btn-search-primary:hover {
  background: var(--light-yellow);
  transform: translateY(-2px);
  color: var(--dark-black)
}
.filters-section {
  padding: 40px 0;
  background: var(--light-gray)
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}
.filter-label {
  font-weight: 600;
  color: var(--dark-black);
  white-space: nowrap
}
.filter-select {
  min-width: 180px
}
.filter-chip {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: var(--text-gray);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
  margin: 4px
}
.filter-chip.active,
.filter-chip:hover {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--dark-black);
  transform: translateY(-1px)
}
.filter-chip i {
  font-size: 12px
}
.btn-clear-filters {
  background: var(--medium-black);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s ease
}
.btn-clear-filters:hover {
  background: var(--dark-black);
  transform: translateY(-1px)
}
.stats-row {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.05)
}
.stat-item {
  display: inline-block;
  margin: 0 20px;
  color: var(--text-gray);
  font-size: 14px
}
.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-black);
  display: block
}
.stat-separator {
  color: var(--primary-yellow);
  margin: 0 12px
}
.suppliers-section {
  padding: 80px 0
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-black)
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px
}
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
  gap: 30px;
  margin-bottom: 60px
}
.supplier-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 2px solid #e0e0e0;
  transition: all .3s ease;
  height: 100%;
  position: relative;
  overflow: hidden
}
.supplier-card:hover {
  border-color: var(--primary-yellow);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  transform: translateY(-6px)
}
.supplier-card.featured {
  border-color: var(--accent-green);
  box-shadow: 0 8px 25px rgba(76,175,80,.15)
}
.supplier-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-green);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2
}
.supplier-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-yellow);
  color: var(--dark-black);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600
}
.supplier-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,var(--light-gray),#f0f0f0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}
.supplier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px
}
.supplier-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-black);
  margin: 0 0 8px 0;
  line-height: 1.3
}
.supplier-location {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px
}
.supplier-location i {
  color: var(--accent-green);
  font-size: 14px
}
.supplier-desc {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1
}
.supplier-services {
  margin-bottom: 20px
}
.service-tag {
  background: var(--light-gray);
  color: var(--text-gray);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin: 2px;
  display: inline-block
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}
.stars {
  color: #ffc107;
  font-size: 14px
}
.rating-text {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500
}
.supplier-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0
}
.stat-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-gray)
}
.stat-badge i {
  color: var(--accent-green);
  font-size: 14px
}
.btn-quote {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: all .3s ease;
  font-size: 15px
}
.btn-quote:hover {
  background: var(--light-yellow);
  transform: translateY(-2px);
  color: var(--dark-black)
}
.btn-contact {
  background: var(--accent-green);
  border: 2px solid var(--accent-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  margin-left: 8px
}
.btn-contact:hover {
  background: var(--dark-green);
  transform: translateY(-1px);
  color: #fff
}
.province-showcase {
  padding: 80px 0;
  background: var(--light-gray)
}
.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px
}
.province-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all .3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden
}
.province-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.15)
}
.province-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block
}
.province-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 12px
}
.province-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 24px
}
.province-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap
}
.stat-item-small {
  text-align: center
}
.stat-number-small {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-black);
  display: block
}
.stat-label-small {
  font-size: 12px;
  color: var(--text-gray)
}
.btn-province {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all .3s ease
}
.btn-province:hover {
  background: var(--light-yellow);
  transform: translateY(-2px);
  color: var(--dark-black)
}
.testimonials-section {
  padding: 80px 0;
  background: #fff
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px
}
.testimonial-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative
}
.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative
}
.testimonial-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--primary-yellow);
  position: absolute;
  top: -8px;
  left: 0
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px
}
.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark-black);
  font-weight: 700
}
.author-info h6 {
  margin: 0;
  font-weight: 600;
  color: var(--dark-black);
  font-size: 16px
}
.author-info small {
  color: var(--text-gray);
  display: block
}
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg,var(--dark-black) 0,var(--medium-black) 100%);
  color: #fff;
  text-align: center
}
.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff
}
.cta-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255,255,255,.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}
.btn-cta-large {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block
}
.btn-cta-large:hover {
  background: var(--light-yellow);
  transform: translateY(-2px);
  color: var(--dark-black)
}
.footer {
  background: var(--medium-black);
  color: #fff;
  padding: 60px 0 30px
}
.footer-section h5 {
  color: var(--primary-yellow);
  font-weight: 600;
  margin-bottom: 20px
}
.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}
.footer-tagline {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px
}
.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color .3s ease
}
.footer-link:hover {
  color: var(--primary-yellow)
}
.provinces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(60px,1fr));
  gap: 8px
}
.province-link {
  color: #ccc;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  transition: all .3s ease
}
.province-link:hover {
  background: var(--primary-yellow);
  color: var(--dark-black)
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px
}
@media (max-width:992px) {
  .hero-title {
    font-size: 36px
  }
  .hero-subtitle {
    font-size: 18px
  }
  .section-title {
    font-size: 28px
  }
  .filter-group {
    justify-content: center
  }
  .suppliers-grid {
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 20px
  }
  .supplier-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }
  .province-stats {
    justify-content: center
  }
}
@media (max-width:768px) {
  .utility-controls {
    /* flex-direction: column; */
    gap: 10px
  }
  .hero-section-featured {
    padding: 80px 0 60px
  }
  .search-section {
    padding: 24px;
    margin: 0 15px
  }
  .filter-group {
    flex-direction: column;
    align-items: stretch
  }
  .filter-select {
    min-width: auto
  }
  .suppliers-grid {
    grid-template-columns: 1fr
  }
  .province-grid {
    grid-template-columns: 1fr
  }
  .cta-title {
    font-size: 28px
  }
  .btn-cta-large {
    padding: 14px 30px;
    font-size: 16px
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0
}
@media (prefers-contrast:high) {
  :root {
    --primary-yellow: #FFD700;
    --dark-black: #000;
    --medium-black: #333
  }
}
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite
}
@keyframes spin {
  0% {
    transform: rotate(0)
  }
  100% {
    transform: rotate(360deg)
  }
}
.btn-back-home {
  background: var(--dark-black);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  margin-top: 30px
}
.btn-back-home:hover {
  background: var(--medium-black);
  color: #fff;
  transform: translateY(-2px)
}