/* Badges contextuels Quebec/Canada/Global */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

.badge-quebec {
  background: #e3f2fd;
  color: #0051A5;
  border: 1px solid #0051A5;
}

/* Quebec Blue SVG Fleur de Lys (injected by main.js) */
svg[fill="#0051A5"] {
  display: inline-block;
  vertical-align: -0.125em;
}

.badge-canada {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #c62828;
}

.badge-global {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

/* Location-specific notices */
.location-notice {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}

.location-notice.quebec {
  background: #e3f2fd;
  border-color: #0051A5;
}

.location-notice.canada {
  background: #ffebee;
  border-color: #c62828;
}

.location-notice.global {
  background: #e8f5e9;
  border-color: #2e7d32;
}

.location-notice h4 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.location-notice p {
  margin-bottom: 0;
  line-height: 1.6;
}

/* Services by Location Section */
.services-by-location {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-icon {
  font-size: 2.5rem;
}

.location-card h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1e293b;
}

.location-card-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.location-card-content li {
  padding: 0.5rem 0;
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.location-card-content li i {
  color: #1e40af;
  margin-top: 4px;
  font-size: 0.9rem;
}

.location-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.location-card-footer .btn-outline {
  width: 100%;
  text-align: center;
}

/* Import base styles from parent */
@import url('../css/style.css');
