/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-content {
  flex: 1.2;
  min-width: 280px;
}

.about-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c6a43b;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 24px;
  color: #1a1a1a;
  line-height: 1.3;
}

.about-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 28px;
  height: 2px;
  background: #c6a43b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover .stat-number::after {
  transform: scaleX(1);
}

.stat-label {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

.about-image {
  flex: 1;
  min-width: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: block;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.35s ease;
  will-change: transform;
}

.about-image:hover img {
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.14);
}

.about-image-second {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  z-index: -1;
}

/* ===== RATING/TESTIMONIALS SECTION ===== */
.rating-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c6a43b;
  margin-bottom: 12px;
}

.section-header h3 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 16px;
}

.section-header h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #c6a43b;
  transform: translateX(-50%);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.section-header h3.is-revealed::after,
.reveal-up.is-revealed .section-header h3::after {
  width: 50px;
}

.testimonial-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 0 60px;
}

.testimonial-track-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 14px;
  box-sizing: border-box;
}

.testimonial-slider .slider-arrow {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #1a1a1a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.testimonial-slider .slider-arrow:hover {
  background: #c6a43b;
  border-color: #c6a43b;
  color: #fff;
}

.testimonial-slider .slider-arrow:disabled {
  cursor: not-allowed;
}

.testimonial-slider .slider-arrow:disabled:hover {
  background: #fff;
  border-color: #e2e2e2;
  color: #1a1a1a;
}

.testimonial-slider .slider-arrow-prev {
  left: 0;
}

.testimonial-slider .slider-arrow-next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial-card {
  height: 100%;
  background: #fff;
  padding: 44px 34px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: #c6a43b;
  opacity: 0.12;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
}

.testimonial-track.has-fade-transition {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #e0e0e0;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  border-color: #c6a43b;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.author-info p {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-grid {
    gap: 40px;
    flex-direction: column;
  }
  
  .about-content {
    min-width: auto;
    padding: 0 4px;
  }
  
  .about-content h3 {
    font-size: 1.6rem;
  }
  
  .about-desc {
    font-size: 0.9rem;
  }
  
  .about-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .about-image {
    min-width: auto;
  }
  
  .about-image img {
    border-radius: 12px;
  }
  
  .about-image::before {
    display: none;
  }
  
  .about-image {
    gap: 14px;
  }
  
  .rating-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header h3 {
    font-size: 1.4rem;
  }
  
  .testimonial-slider {
    padding: 0 50px;
  }

  .testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .testimonial-card {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .testimonial-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .about-content h3 {
    font-size: 1.3rem;
  }
  
  .about-stats {
    gap: 12px;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .section-header h3 {
    font-size: 1.2rem;
  }
  
  .testimonial-slider {
    padding: 0 40px;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 6px;
  }

  .testimonial-card {
    padding: 16px 12px;
  }
}