/* Kanzlei Gaidash - Custom Styles */

/* Marquee Animation */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gd-marquee-container {
  overflow: hidden;
  width: 100%;
  background: #f9f9f9;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.gd-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 15s linear infinite;
}

.gd-marquee-track:hover {
  animation-play-state: paused;
}

.gd-marquee-item {
  flex-shrink: 0;
  margin: 0 50px;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.gd-marquee-item:hover {
  opacity: 1;
}

.gd-marquee-item img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Awards Row */
.gd-awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.gd-awards-row a {
  transition: transform 0.3s;
  display: inline-block;
}

.gd-awards-row a:hover {
  transform: scale(1.05);
}

/* Reviews Section */
.gd-reviews-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.gd-review-widget {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  min-width: 280px;
  max-width: 400px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.gd-review-widget h4 {
  margin: 15px 0 8px;
  font-size: 1.1rem;
  color: #333;
}

.gd-review-stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.gd-review-score {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 10px 0 5px;
}

.gd-review-link {
  display: inline-block;
  margin-top: 12px;
  color: #b89b5e;
  text-decoration: none;
  font-weight: 600;
}

.gd-review-link:hover {
  text-decoration: underline;
}

/* Section Titles */
.gd-section-title {
  text-align: center;
  padding: 40px 0 20px;
}

.gd-section-title h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #333;
}
