/* Audit v2 Fixes - Santa's Sweepers */

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}

.skip-to-content:focus {
  top: 6px;
}

/* Customer Reviews Section */
.reviews-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.review-stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  font-weight: bold;
  color: var(--primary-color);
}

/* Trust badges in hero */
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  border: 2px solid var(--gold);
}

/* Social media links styling */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: var(--gold);
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}

/* E-E-A-T content styling */
.expertise-highlight {
  background: linear-gradient(135deg, var(--primary-color), #2c3e50);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid var(--gold);
}

/* Enhanced accessibility for forms */
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-badges {
    gap: 10px;
  }
  
  .trust-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}
