/* General styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background: #111;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo span {
  color: #00aaff;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.nav-list li {
  margin: 0 8px;
}

.nav-list a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-list a:hover,
.nav-list .active {
  background: #00aaff;
}

/* Hero Section */
.reviews-hero {
  background: linear-gradient(to right, #00aaff, #0077cc);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.reviews-hero h1 span {
  color: #f5f5f5;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.counter {
  font-size: 2rem;
  font-weight: bold;
}

/* Review Cards */
.review-card {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.review-card.featured {
  display: flex;
  flex-direction: column;
}

.review-media img {
  width: 100%;
  height: auto;
  display: block;
}

.review-content {
  padding: 20px;
}

.review-meta {
  font-size: 0.85rem;
  color: #666;
  margin: 8px 0;
}

.review-rating {
  margin-top: 15px;
}

.rating-bar {
  margin-top: 8px;
}

.bar-container {
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  height: 10px;
  margin: 5px 0;
}

.bar {
  height: 10px;
  background: #00aaff;
}

.btn-read,
.btn-read-more {
  display: inline-block;
  margin-top: 15px;
  background: #00aaff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-read:hover,
.btn-read-more:hover {
  background: #0077cc;
}

/* Review Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.category-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00aaff;
}

.count {
  font-size: 0.85rem;
  color: #666;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00aaff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

.back-to-top.show {
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title span {
  color: #00aaff;
}
/* ===== FOOTER ===== */
footer {
  background-color: #111;
  color: #ccc;
  padding: 50px 20px 20px;
  margin-top: 60px;
  font-size: 0.95rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00aaff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: #00aaff;
}

/* Social links */
.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.2rem;
  color: #bbb;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00aaff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #aaa;
}

.footer-bottom a:hover {
  color: #00aaff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

