/* ===== CONTACT SECTION TEXT FIX ===== */
#contact .section-description,
#contact .section-title p {
  color: #ffffff;
  opacity: 0.9;
}

/* ===== GOOGLE REVIEW / QR CODE CARD ===== */
.review-qr-full-section {
  margin-top: 30px;
  width: 100%;
  position: relative;
}

.qr-code-full-container {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 35px 25px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-height: 160px;
  width: 100%;
  margin: 30px 0 0 0;
}

.qr-code-full-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

.qr-code-left {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code-wrapper {
  position: relative;
  display: inline-block;
}

.qr-code-frame {
  width: 150px;
  height: 150px;
  border: 5px solid #FFD700;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.qr-code-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.qr-code-overlay {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
  animation: pulse-qr 2s infinite;
}

@keyframes pulse-qr {
  0% { transform: scale(1); box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6); }
  100% { transform: scale(1); box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4); }
}

.qr-code-right {
  flex: 1;
  text-align: left;
}

.review-text-content {
  padding-left: 15px;
}

.review-title {
  color: #FFD700;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 0;
}

.review-title i {
  margin-right: 10px;
  color: #FFA500;
  font-size: 22px;
  animation: star-twinkle 2s ease-in-out infinite alternate;
}

@keyframes star-twinkle {
  0% {
    transform: scale(1) rotate(0deg);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  100% {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  }
}

.review-description {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-review {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.btn-review:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  color: #000;
  text-decoration: none;
}

.btn-review i {
  font-size: 16px;
}

@media (min-width: 1200px) {
  .qr-code-full-container {
    max-width: 900px;
  }
}

@media (max-width: 767px) {
  .qr-code-full-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
    text-align: center;
  }

  .qr-code-right {
    text-align: center;
  }

  .review-text-content {
    padding-left: 0;
  }

  .qr-code-frame {
    width: 110px;
    height: 110px;
  }

  .review-title {
    font-size: 20px;
  }

  .review-description {
    font-size: 14px;
  }

  .btn-review {
    padding: 10px 22px;
    font-size: 13px;
  }
}
