/* =============================================
   ADM Landing Page Styles
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #e05555;
  --primary-dark: #c43c3c;
  --dark:         #0f0e17;
  --text:         #1a1a2e;
  --text-muted:   #6b7280;
  --light-bg:     #f7f7fb;
  --border:       #e5e7eb;
  --white:        #ffffff;
  --font:         'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.nav-logo-img {
  height: 40px;     
  width: auto;
  display: block;
}

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-text { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo-slash { color: #e63946; }
.nav-actions { display: flex; gap: 12px; }
.btn-login {
  padding: 8px 20px; border-radius: 8px;
  border: 1.5px solid var(--border); background: transparent;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--text); cursor: pointer; transition: all 0.2s;
}
.btn-login:hover { border-color: var(--primary); color: var(--primary); }
.btn-book {
  padding: 8px 20px; border-radius: 8px;
  border: none; background: var(--dark);
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: #fff; cursor: pointer; transition: all 0.2s;
}
.btn-book:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(224,85,85,0.35); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 64px; overflow: hidden;
  background: var(--dark);
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 50%, #1a1a2e 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 16px; font-weight: 500;
  text-align: center; line-height: 1.6;
  border: 2px dashed rgba(255,255,255,0.15);
}
.hero-placeholder small { font-size: 12px; opacity: 0.7; }

/* Gradient overlay on hero photo*/
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 24px;
  max-width: 680px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.8);
  margin-bottom: 32px; line-height: 1.6;
}
.btn-join {
  padding: 14px 36px; border-radius: 50px;
  border: none; background: var(--primary);
  font-family: var(--font); font-size: 16px; font-weight: 700;
  color: #fff; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(224,85,85,0.4);
}
.btn-join:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,85,85,0.45); }

/* ===== MISSION VISION HISTORY ===== */
.mvh {
  background: var(--light-bg);
  padding: 72px 32px;
  text-align: center;
}
.mvh-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.mvh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.mvh-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 28px 24px 24px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.mvh-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff0f0 0%, #ffe4e4 100%);
  border: 1px solid #f8c9c9;
  color: #e63946;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mvh-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.mvh-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mvh-grid { grid-template-columns: 1fr; }
}

/* ===== MVH CARD CLICKABLE ===== */
.mvh-card-clickable {
  cursor: pointer;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.mvh-card-clickable:hover {
  box-shadow: 0 10px 32px rgba(224,85,85,0.13);
  transform: translateY(-4px);
  border-top-color: var(--primary-dark);
}
.mvh-see-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

/* ===== MVH MODAL ===== */
.mvh-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,10,20,0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.mvh-backdrop.open {
  opacity: 1; pointer-events: all;
}
.mvh-modal-box {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  width: min(94vw, 580px);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34,1.44,0.64,1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.mvh-backdrop.open .mvh-modal-box {
  transform: translateY(0) scale(1);
}
.mvh-modal-header {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, #fff8f8, #ffffff);
}
.mvh-modal-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff0f0 0%, #ffe4e4 100%);
  border: 1px solid #f8c9c9;
  color: #e63946;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mvh-modal-title {
  flex: 1;
  font-size: 20px; font-weight: 800;
  color: var(--text); letter-spacing: -0.4px;
}
.mvh-modal-body {
  padding: 26px 28px 30px;
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8;
}

/* ===== INTRO ===== */
.intro {
  text-align: center; padding: 72px 24px 48px;
  max-width: 640px; margin: 0 auto;
}
.intro-text { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.5; margin-bottom: 10px; }
.intro-sub { font-size: 14px; color: var(--text-muted); }

/* ===== LESSONS ===== */
.lessons { max-width: 1000px; margin: 0 auto; padding: 0 32px 80px; }
.lesson-row {
  display: flex; align-items: center; gap: 60px;
  padding: 48px 0; border-bottom: 1px solid var(--border);
}
.lesson-row:last-child { border-bottom: none; }
.lesson-row.reverse { flex-direction: row-reverse; }
.lesson-photo {
  width: 420px; min-width: 420px; height: 280px;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.lesson-photo-placeholder {
  width: 420px; min-width: 420px; height: 280px;
  border-radius: 16px; background: #e8e8f0;
  border: 2px dashed #c4c4d4;
  display: flex; align-items: center; justify-content: center;
  color: #9090aa; font-size: 14px; font-weight: 500;
  text-align: center; line-height: 1.6; flex-shrink: 0;
}
.lesson-photo-placeholder small { font-size: 11px; opacity: 0.7; }
.lesson-text { flex: 1; }
.lesson-text h3 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.5px; }
.lesson-text p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ===== LESSON CLICKABLE PHOTO ===== */
.lesson-thumb-wrap {
  position: relative;
  width: 420px; min-width: 420px; height: 280px;
  border-radius: 16px; overflow: hidden;
  cursor: pointer; flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.lesson-thumb-wrap .lesson-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.35s ease;
}
.lesson-thumb-wrap:hover .lesson-photo {
  transform: scale(1.05);
}
.lesson-play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  transition: background 0.25s ease;
}
.lesson-thumb-wrap:hover .lesson-play-overlay {
  background: rgba(0,0,0,0.45);
}
.lesson-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 20px rgba(224,85,85,0.5);
}
.lesson-thumb-wrap:hover .lesson-play-btn {
  opacity: 1; transform: scale(1);
}
.lesson-watch-badge {
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.03em;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.lesson-thumb-wrap:hover .lesson-watch-badge {
  opacity: 1; transform: translateY(0);
}

/* ===== RECITAL MODAL ===== */
.recital-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,10,20,0.72);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.recital-backdrop.open {
  opacity: 1; pointer-events: all;
}
.recital-box {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  width: min(94vw, 700px);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34,1.44,0.64,1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.recital-backdrop.open .recital-box {
  transform: translateY(0) scale(1);
}
.recital-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, #fff8f8, #ffffff);
}
.recital-title {
  font-size: 15px; font-weight: 800;
  color: var(--text); letter-spacing: -0.2px;
  display: flex; align-items: center; gap: 10px;
}
.recital-title::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(224,85,85,0.18);
}
.recital-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: background 0.15s, color 0.15s, transform 0.15s;
  line-height: 1;
}
.recital-close:hover { background: #fde8e8; color: var(--primary); transform: scale(1.08); }
.recital-video {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: #000;
}
.recital-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.recital-footer {
  text-align: center; padding: 12px 20px 16px;
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== RATES ===== */
.rates { background: var(--light-bg); padding: 80px 32px; }
.rates-title { text-align: center; font-size: 36px; font-weight: 800; color: var(--text); margin-bottom: 40px; letter-spacing: -0.5px; }
.rates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto 20px; }
.rate-card, .rate-card-wide { background: #fff; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.rate-card-wide { max-width: 860px; margin: 0 auto; }
.rate-card-header { background: #fde8e8; padding: 20px 24px; border-bottom: 1px solid #f8c9c9; }
.rate-card-header h3 { font-size: 17px; font-weight: 800; color: #b83232; margin-bottom: 4px; }
.rate-card-header p { font-size: 12px; color: #c05050; }
.rate-card-body { padding: 20px 24px; }
.rate-type { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 14px; text-transform: uppercase; }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f3f4f6; font-size: 14px; font-weight: 700; color: var(--text); }
.rate-row:last-child { border-bottom: none; }
.rate-row.highlight { font-weight: 700; }
.rate-price { font-weight: 700; color: var(--primary); }

/* ===== SOCIAL ===== */
.social { text-align: center; padding: 80px 24px; background: var(--white); }
.social-text { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 40px; line-height: 1.6; }
.social-icons { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.social-link { display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform 0.2s; }
.social-link:hover { transform: translateY(-4px); }
.social-icon-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.2s, box-shadow 0.2s; }
#fb-link:hover .social-icon-circle { background: #1877f2; box-shadow: 0 4px 16px rgba(24,119,242,0.4); }
#ig-link:hover .social-icon-circle { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 4px 16px rgba(220,39,67,0.4); }
#yt-link:hover .social-icon-circle { background: #ff0000; box-shadow: 0 4px 16px rgba(255,0,0,0.4); }
.social-label { font-size: 12px; color: var(--text-muted); font-weight: 500; line-height: 1.4; text-align: center; }

/* ===== CONTACT ===== */
.contact { background: var(--light-bg); padding: 80px 32px; }
.contact-title { text-align: center; font-size: 36px; font-weight: 800; color: var(--text); margin-bottom: 48px; letter-spacing: -0.5px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #ffe4e4; color: #e63946;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail { flex: 1; }
.contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 6px; }
.contact-detail p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 4px; }
.contact-note { font-size: 12px; color: var(--text-muted); }
.contact-email { font-size: 14px; color: var(--primary); font-weight: 600; transition: color 0.2s; }
.contact-email:hover { color: var(--primary-dark); }
.contact-maps { display: flex; flex-direction: column; gap: 20px; }
.map-card { background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.map-label { font-size: 13px; font-weight: 700; color: var(--text); padding: 14px 16px 10px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #fff; padding: 48px 32px 24px; }
.footer-container { max-width: 1000px; margin: 0 auto; display: flex; gap: 60px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); max-width: 1000px; margin: 0 auto; }

.footer-logo-img {
  height: 120px;      
  width: auto;
  display: block;
  margin-bottom: 8px;
  border-radius: 50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lesson-row, .lesson-row.reverse { flex-direction: column; gap: 24px; }
  .lesson-photo, .lesson-photo-placeholder, .lesson-thumb-wrap { width: 100%; min-width: unset; }
  .rates-grid { grid-template-columns: 1fr; }
  .social-icons { gap: 28px; }
  .footer-container { gap: 32px; }
}
/* ===== LESSON BUTTON ===== */
.btn-lesson {
  margin-top: 20px;
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid var(--primary); background: transparent;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  color: var(--primary); cursor: pointer; transition: all 0.2s;
  display: inline-block;
}
.btn-lesson:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(224,85,85,0.35);
}
/* ===== MVH CARD CLICKABLE ===== */
.mvh-card-clickable {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mvh-card-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.mvh-see-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  font-size: 13px; font-weight: 700;
  color: var(--primary);
}

/* ===== MVH MODAL ===== */
.mvh-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
  padding: 16px;
}
.mvh-backdrop.open { opacity: 1; pointer-events: all; }
.mvh-modal-box {
  background: var(--white);
  border-radius: 18px;
  width: min(94vw, 560px);
  transform: scale(0.95);
  transition: transform 0.22s ease;
  overflow: hidden;
}
.mvh-backdrop.open .mvh-modal-box { transform: scale(1); }
.mvh-modal-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mvh-modal-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #ffe4e4; color: #e63946;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mvh-modal-title { font-size: 17px; font-weight: 800; color: var(--text); flex: 1; }
.mvh-modal-body { padding: 24px; font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ===== LESSON BUTTON ===== */
.btn-lesson {
  margin-top: 20px;
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid var(--primary); background: transparent;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  color: var(--primary); cursor: pointer; transition: all 0.2s;
  display: inline-block;
}
.btn-lesson:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(224,85,85,0.35);
}

/* ===== NON-SELECTABLE PHONE NUMBERS ===== */
.footer-col span {
  user-select: none;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* ===== FOOTER BOTTOM LINKS ===== */
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom a:hover {
  color: rgba(255,255,255,0.75);
}
/* =============================================
   TESTIMONIALS & FEEDBACK SECTION
   ============================================= */
.testimonials {
  background: var(--white);
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* ── Left: testimonials list ── */
.testimonials-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--primary); margin-bottom: 12px;
}
.testimonials-title {
  font-size: 36px; font-weight: 800; color: var(--text);
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 10px;
}
.testimonials-sub {
  font-size: 14px; color: var(--text-muted); margin-bottom: 24px;
}
.testimonials-avg {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.avg-score {
  font-size: 40px; font-weight: 800; color: var(--text); line-height: 1;
}
.avg-stars { font-size: 20px; }
.avg-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.testimonials-loading {
  display: flex; justify-content: center; padding: 40px 0;
}
.loading-spinner {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.testimonials-cards {
  display: flex; flex-direction: column; gap: 14px;
  max-height: 520px; overflow-y: auto;
  padding-right: 4px;
}
.testimonials-cards::-webkit-scrollbar { width: 4px; }
.testimonials-cards::-webkit-scrollbar-track { background: transparent; }
.testimonials-cards::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.testimonials-empty {
  font-size: 14px; color: var(--text-muted);
  text-align: center; padding: 40px 0;
}

.tc-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: box-shadow 0.2s;
}
.tc-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.tc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.tc-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: 14px; color: var(--text); }
.tc-stars { font-size: 13px; margin-top: 2px; }
.tc-comment { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Right: feedback form ── */
.feedback-form-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: sticky;
  top: 90px;
}
.feedback-form-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feedback-form-title {
  font-size: 20px; font-weight: 800; color: var(--text);
  margin-bottom: 4px; letter-spacing: -0.3px;
}
.feedback-form-sub {
  font-size: 13px; color: var(--text-muted); margin-bottom: 22px;
}

.feedback-field { margin-bottom: 16px; }
.feedback-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--text-muted);
  margin-bottom: 7px;
}
.feedback-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: 14px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.15s;
}
.feedback-input:focus { border-color: var(--primary); }
.feedback-textarea {
  width: 100%; min-height: 100px; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: 14px; color: var(--text);
  background: var(--white); outline: none; resize: vertical;
  transition: border-color 0.15s;
}
.feedback-textarea:focus { border-color: var(--primary); }
.char-count {
  text-align: right; font-size: 11px; color: var(--text-muted);
  margin-top: 4px;
}

/* Star picker */
.star-picker { display: flex; gap: 4px; margin-bottom: 6px; }
.star-pick {
  font-size: 28px; cursor: pointer;
  color: #d1d5db;
  transition: color 0.12s, transform 0.1s;
  user-select: none;
}
.star-pick:hover, .star-pick.hovered, .star-pick.selected { color: #f59e0b; }
.star-pick:hover { transform: scale(1.15); }
.star-label { font-size: 12px; color: var(--text-muted); font-weight: 500; min-height: 18px; }

/* Error / submit */
.feedback-error {
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: #dc2626;
  margin-bottom: 14px;
}
.feedback-submit-btn {
  width: 100%; padding: 13px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 12px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.feedback-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,85,85,0.35);
}
.feedback-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Success state */
.feedback-success {
  flex-direction: column; align-items: center; text-align: center;
  padding: 24px 0;
}
.success-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feedback-success h4 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.feedback-success p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feedback-form-box { position: static; }
  .testimonials-cards { max-height: 360px; }
}

/* ── OTP flow styles ── */
.otp-sent-msg {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.5; margin-bottom: 16px;
}
.otp-sent-msg strong { color: var(--text); }

.otp-boxes {
  display: flex; gap: 8px; margin-bottom: 10px;
}
.otp-box {
  width: 42px; height: 48px;
  border: 1.5px solid var(--border); border-radius: 10px;
  text-align: center; font-size: 20px; font-weight: 700;
  font-family: var(--font); color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.15s;
}
.otp-box:focus { border-color: var(--primary); }

.otp-timer-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.otp-timer-txt { font-size: 12px; color: var(--text-muted); }
.otp-resend-btn {
  font-size: 12px; font-weight: 600; font-family: var(--font);
  color: var(--primary); background: none; border: none;
  cursor: pointer; padding: 0; transition: opacity 0.15s;
}
.otp-resend-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.otp-resend-btn:not(:disabled):hover { text-decoration: underline; }

.feedback-back-btn {
  width: 100%; margin-top: 8px; padding: 10px;
  background: none; border: 1.5px solid var(--border);
  border-radius: 12px; font-family: var(--font);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s;
}
.feedback-back-btn:hover { border-color: var(--text-muted); color: var(--text); }

.otp-verified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #dcfce7; color: #16a34a;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 16px;
}