/* Show Card Hook */
:root {
  --hook-primary-yellow: #ffbe6a;
  --hook-dark-bg: #1a1a1a;
}

.hook-services-section {
  width: 100%;
  margin: 60px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hook-services-title {
  color: var(--hook-primary-yellow);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hook-services-subtitle {
  opacity: 0.8;
  margin-bottom: 38px;
  font-size: 1.1rem;
  color: #fff;
}

.hook-services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.hook-service-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex: none;
  position: relative;
  padding: 30px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255,190,106,0.18);
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  z-index: 1;
}

.hook-service-card::before,
.hook-service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,190,106,0.1);
  z-index: -1;
}

.hook-service-card::before {
  transform: translate(8px, 8px) rotateZ(-2deg);
  animation: floatLayer1 7s ease-in-out infinite alternate;
}

.hook-service-card::after {
  transform: translate(16px, 16px) rotateZ(-4deg);
  animation: floatLayer2 8s ease-in-out infinite alternate;
}

@keyframes floatLayer1 {
  0% { transform: translate(8px, 8px) rotateZ(-2deg); }
  50% { transform: translate(20px, 18px) rotateZ(-2deg); }
  100% { transform: translate(8px, 8px) rotateZ(-2deg); }
}

@keyframes floatLayer2 {
  0% { transform: translate(16px, 16px) rotateZ(-4deg); }
  50% { transform: translate(28px, 26px) rotateZ(-4deg); }
  100% { transform: translate(16px, 16px) rotateZ(-4deg); }
}

.hook-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 50px rgba(255,190,106,0.25);
  border: 1.5px solid var(--hook-primary-yellow);
}

.hook-service-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--hook-primary-yellow);
  transition: transform 0.3s ease;
  display: inline-block;
}

.hook-service-card:hover .hook-service-icon {
  transform: scale(1.1) rotateZ(-3deg);
}

.hook-service-card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--hook-primary-yellow);
}

.hook-service-card-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
  color: #fff;
}

@media (max-width: 1100px) {
  .hook-services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .hook-services-cards {
    grid-template-columns: 1fr;
  }
}

/* Comment Customer Hook */
.testimonials-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  background: transparent;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-header .badge {
  display: inline-block;
  border: 1px solid #e5af58;
  border-radius: 8px;
  padding: 6px 18px;
  font-size: 1rem;
  margin-bottom: 18px;
  background: transparent;
}

.testimonials-header h2 {
  color: #e5af58;
  font-size: 3.2rem;
  font-weight: 800;
  justify-content: center;
  margin: 0;
}

.testimonials-header p {
  color: #e5af58;
  opacity: 0.9;
  font-size: 1.1rem;
  margin: 0;
}

.testimonials-columns {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-height: 100%;
  max-height: 40rem;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: scrollY 15s linear infinite;
}

.testimonials-col:nth-child(2) { 
  animation-duration: 19s; 
}

.testimonials-col:nth-child(3) { 
  animation-duration: 17s; 
}

@keyframes scrollY {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.testimonial-card {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(80, 80, 200, 0.08);
  padding: 32px 24px;
  max-width: 320px;
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card .testimonial-text {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 18px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f3f4f6;
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
}

.testimonial-user-info .name {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
}

.testimonial-user-info .role {
  font-size: 0.95rem;
  color: #888;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .testimonials-columns {
    flex-direction: column;
    align-items: center;
    min-height: 600px;
    max-height: 600px;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  }
}
