/* ===== VARIABEL ===== */
:root {
  --primary: #0077b6;
  --accent: #00b4d8;
  --yellow: #ffdd00;
  --dark: #1d1d1d;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --font-main: 'Poppins', sans-serif;
}

/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--light);
  color: var(--dark);
  scroll-behavior: smooth;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary);
  gap: 0.5rem;
}

.logo span {
  color: var(--accent);
}

/* Logo image in navbar */
.navbar-logo {
  max-width: 80px;
  height: auto;
  margin-right: 5px;
  margin-left: -40px;
  display: inline-block;
  vertical-align: middle;
}

/* Tombol hamburger (hidden by default) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark);
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ===== HERO ===== */
.hero-edubia {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  color: white;
  padding: 120px 20px 100px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: var(--yellow);
}

.hero-text p {
  font-size: 1.2rem;
  color: #f1f1f1;
  line-height: 1.8;
  max-width: 520px;
  text-align: justify; /* ✅ Tambahan untuk rata kanan-kiri */
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-buttons .btn {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 40px;
}

/* Visual */
.hero-visual {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

/* Mobile only image */
.hero-inline-image {
  max-width: 280px;
  margin: 1.5rem auto;
  display: none;
  animation: float 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Decorative background elements */
.hero-edubia::before,
.hero-edubia::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-edubia::before {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-edubia::after {
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

.btn-filled {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-filled:hover {
  background: #ffe600;
}

/* ===== CARD / STAT / PROGRAM ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card, .stat-box {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover, .stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 1.1rem;
  color: var(--gray);
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding-inline: 1rem;
}

.program-card {
  padding: 3rem 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffffff, #f0f6ff);
  box-shadow: 0 20px 56px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  border: 1px solid #dee7f8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.program-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(0, 140, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.12);
}

.program-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
  position: relative;
  z-index: 1;
}

.program-card ul li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  color: var(--dark);
  font-size: 1.05rem;
}

.program-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent);
  font-size: 1rem;
  font-weight: bold;
}

.program-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.beginner .program-badge { background: #00cec9; }
.intermediate .program-badge { background: #0984e3; }
.advanced .program-badge { background: #d63031; }

/* Profil Pelatih Section */
.profil-pelatih {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.profil-cards {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.profil-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.profil-card:hover {
  transform: translateY(-10px);
}

.profil-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.profil-info {
  padding: 20px;
  text-align: center;
}

.profil-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.profil-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.profil-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.profil-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ddd;
  color: #333;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent);
  color: #fff;
}

/* ===== Jadwal & Harga Paket (Premium Style) ===== */
.jadwal-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  text-align: center;
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

/* Paket Card */
.paket-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 6px solid var(--accent);
  overflow: hidden;
}

.paket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Badge Label */
.paket-card::before {
  content: attr(data-badge);
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background-color: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header Harga */
.paket-header h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.paket-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.paket-note {
  font-size: 0.85rem;
  color: #888;
}

/* Info List */
.paket-info {
  list-style: none;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  font-size: 1rem;
  text-align: left;
  line-height: 1.7;
  color: var(--dark);
}

.paket-info li {
  margin-bottom: 0.7rem;
  padding-left: 1.8rem;
  position: relative;
}

.paket-info li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent);
  font-size: 1rem;
  font-weight: bold;
}

/* Button */
.paket-card .btn {
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(to right, var(--yellow), #fff685);
  color: var(--dark);
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.paket-card .btn:hover {
  background: #ffe600;
  transform: translateY(-2px);
}

/* ===== Testimoni Section ===== */
.testimoni-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.testimoni-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 2rem;
}

.testimoni-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimoni-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimoni-author {
  font-weight: bold;
  color: #444;
}

.testimoni-button {
  margin-top: 2rem;
}

.testimoni-button .btn {
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}

/* ===== Testimoni Auto Slider ===== */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  animation: scrollTestimonials 35s linear infinite;
}

.testimonial-slide {
  flex: 0 0 340px;
  max-width: 340px;
}

.testimonial-slide .testimoni-card {
  height: 100%;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

  .testimonial-slide {
    flex: 0 0 280px;
    max-width: 280px;
  }

  .testimonial-track {
    gap: 1rem;
    animation-duration: 25s;
  }

  .testimonial-slide .testimoni-card {
    min-height: 240px;
  }

/* ===== Modal for Adding Testimoni ===== */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal button:hover {
  background-color: #0056b3;
}

/* Rating stars styling */
.rating {
  display: flex;
  gap: 5px;
}

.rating .star {
  font-size: 1.5rem;
  color: #ccc; /* default color */
  cursor: pointer;
}

.rating .star.active {
  color: #ffcc00; /* color for active stars */
}

/* ===== FAQ ===== */
.faq-box {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f5faff);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.05);
}

.faq-item {
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
}

.faq-item.open {
  border-left-color: var(--primary);
  background: #fdfdff;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f0f6ff;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent);
  font-size: 1rem;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 2rem 1.5rem;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  background: #fbfbfc;
  border-top: 1px solid #eaeaea;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA ===== */
.cta-block {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  text-align: center;
  color: white;
  padding: 100px 30px 80px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.05);
}

.cta-block::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.cta-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}

.cta-block h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 auto 0.8rem;
  max-width: 640px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.cta-block p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.cta-buttons .btn {
  padding: 1rem 2.4rem;
  font-size: 1.1rem;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-filled {
  background: var(--yellow);
  color: var(--dark);
}

.cta-buttons .btn-filled:hover {
  background: #ffe600;
  transform: translateY(-3px);
}

/* Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding: 80px 20px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  padding: 0 2rem;
}

/* === Footer Columns === */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* === Brand === */
.footer-logo {
  width: 65px;
  margin-bottom: 0.6rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.1);
}

.footer-logo:hover {
  transform: scale(1.08);
  filter: brightness(1.3);
}

.footer-brand {
  text-align: left;
}

.footer-brand h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.footer-brand p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
  max-width: 460px;
}

/* === Sosial Media === */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent);
  color: var(--dark);
}

/* === Links === */
.footer-links {
  text-align: center;
  justify-self: center;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* === Contact === */
.footer-contact {
  text-align: right;
  justify-self: end;
}

.footer-contact ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: break-word;
}

.footer-contact i {
  color: var(--accent);
  font-size: 1rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

/* === Copyright === */
.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fade-in Animation */
.fade-in {
  animation: fadeInUp 1s ease-in-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ANIMASI ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* WhatsApp Button Styling */
.btn-whatsapp {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px; /* Ensures the button is circular */
  height: 50px; /* Ensures the button is circular */
  z-index: 9999; /* Ensures the button stays on top of all content */
}

.btn-whatsapp i {
  font-size: 1.8rem; /* Icon size */
}

/* Hover effect for WhatsApp button */
.btn-whatsapp:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* ===== DAFTAR ===== */
.daftar-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 600px;
  margin: 3rem auto;
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.daftar-form label {
  font-weight: 600;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  gap: 0.4rem;
}

.daftar-form input,
.daftar-form select,
.daftar-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fafafa;
  transition: all 0.25s ease;
}

.daftar-form input:focus,
.daftar-form select:focus,
.daftar-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  background-color: #fff;
  outline: none;
}

.daftar-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Tombol aksi */
.daftar-form .btn {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 40px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Tombol submit */
.daftar-form .btn-filled {
  background-color: var(--yellow);
  color: var(--dark);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.daftar-form .btn-filled:hover {
  background-color: #ffe600;
  transform: translateY(-2px);
}

/* Tombol kembali */
.daftar-form .btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  margin-top: 1rem;
}

.daftar-form .btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Tata letak tombol */
.daftar-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.form-section {
  padding: 100px 0 80px;
  min-height: 70vh;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 20;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    margin-left: auto;
  }

  nav {
    width: 100%;
    position: relative;
  }

  .nav-links {
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    animation: fadeSlideDown 0.3s ease forwards;
    z-index: 10;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 0.6rem 0;
    text-align: center;
  }

  .nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--accent);
  }

  @keyframes fadeSlideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hero Section */
  .hero-edubia {
    padding: 80px 20px 100px;
    text-align: center;
  }

  .hero-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.4;
  }

  .hero-text p {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-inline-image {
    display: block;
    max-width: 100%;
    height: auto;
  }

  /* Grid sections */
  .card-grid,
  .footer-container,
  .program-grid {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* CTA */
  .cta-block {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 80px 20px 60px;
    text-align: center;
  }

  .cta-block h2 {
    font-size: 1.6rem;
    padding: 0 1rem;
    line-height: 1.4;
  }

  .cta-block p {
    font-size: 1rem;
    color: #f3f3f3;
    padding: 0 1rem;
    max-width: 480px;
    margin: 1rem auto 2rem;
    line-height: 1.6;
  }

  .cta-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.05rem;
    padding: 1rem 1.8rem;
    text-align: center;
    border-radius: 40px;
  }

  /* FAQ & Program */
  .faq-box,
  .program-cards {
    padding: 0 1rem;
  }

  /* Footer (Final Structure) */
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .footer-col {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  /* Rata tengah brand dan konten lainnya */
  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    max-width: 80px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
  }

  .footer-brand h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center; /* pastikan h3 juga rata tengah */
  }

  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin: 0 auto;
    max-width: 480px;
    text-align: center;
  }

  /* Heading Section */
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.05rem;
    color: var(--yellow);
    margin-bottom: 0.8rem;
    text-align: center; /* fix untuk pastikan <h4> rata tengah */
  }

  /* UL container */
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
  }

  /* Items */
  .footer-links li,
  .footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    line-height: 1.6;
    text-align: center;
  }

  /* Alamat baris terakhir block */
  .footer-contact li:last-child {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }

  /* Anchor */
  .footer-links a,
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    color: white;
  }

  /* Icon di kontak */
  .footer-contact i {
    color: var(--accent);
    font-size: 1rem;
    margin-right: 0.3rem;
  }

  /* Social Media */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .social-icons a:hover {
    background-color: var(--accent);
    color: var(--dark);
  }

  /* Responsive Footer Logo */
  .footer-logo {
    max-width: 80px;
    height: auto;
    margin: 0 auto 0.8rem;
    display: block;
  }

  /* Responsive Navbar Logo */
  .navbar-logo {
    max-width: 60px;
    height: auto;
    margin-left: -10px;
    margin-right: 5px;
    transition: all 0.3s ease;
  }

  .logo {
    font-size: 1.3rem;
    gap: 0.4rem;
  }

  /* WhatsApp Floating Button */
  .btn-whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #25d366;
    color: white;
    font-size: 1.6rem;
    padding: 12px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-whatsapp:hover {
    background-color: #1ebd5a;
    transform: scale(1.05);
  }
}

/* Responsive khusus WhatsApp < 767px */
@media (max-width: 767px) {
  .btn-whatsapp {
    width: 45px;
    height: 45px;
    padding: 8px;
  }

  .btn-whatsapp i {
    font-size: 1.5rem;
  }
}

/* =========================
   PREMIUM PUBLIC UI UPGRADE
========================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(0, 180, 216, 0.08), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8fc 100%);
}

::selection {
  background: rgba(0, 180, 216, 0.25);
  color: #0f172a;
}

/* ===== Navbar Premium ===== */
.navbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.35s ease;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links a {
  position: relative;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== Hero Premium ===== */
.hero-edubia {
  padding: 140px 20px 110px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 18%),
    linear-gradient(135deg, #11b9dc 0%, #009cd0 45%, #0077b6 100%);
  box-shadow: inset 0 -18px 45px rgba(0, 0, 0, 0.04);
}

.hero-edubia::before {
  width: 260px;
  height: 260px;
  top: -70px;
  left: -70px;
  background: rgba(255, 255, 255, 0.08);
  animation: blobDrift 14s ease-in-out infinite;
}

.hero-edubia::after {
  width: 340px;
  height: 340px;
  bottom: -90px;
  right: -90px;
  background: rgba(255, 255, 255, 0.06);
  animation: blobDrift 16s ease-in-out infinite reverse;
}

@keyframes blobDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -14px) scale(1.05);
  }
}

.hero-container {
  gap: 4rem;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.4rem;
  max-width: 10ch;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.hero-text h1 span {
  color: var(--yellow);
}

.hero-text p {
  font-size: 1.15rem;
  max-width: 610px;
  color: rgba(255,255,255,0.92);
  text-align: left;
}

.hero-visual {
  transition: transform 0.25s linear;
  will-change: transform;
}

.hero-image {
  max-width: 92%;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.16));
}

/* ===== Buttons Premium ===== */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.btn:hover::after {
  left: 140%;
}

.btn-filled {
  background: linear-gradient(135deg, #ffe100, #ffd000);
  box-shadow: 0 18px 30px rgba(255, 221, 0, 0.28);
}

.btn-filled:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-radius: 16px;
}

/* ===== Section polish ===== */
.section {
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  margin: 14px auto 0;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Cards Premium ===== */
.card,
.stat-box,
.program-card,
.profil-card,
.paket-card,
.testimoni-card,
.faq-box,
.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.card,
.stat-box,
.profil-card,
.testimoni-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.card:hover,
.stat-box:hover,
.profil-card:hover,
.testimoni-card:hover,
.paket-card:hover,
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.10);
}

/* ===== Stats ===== */
.stat-box {
  border-radius: 28px;
}

.stat-box h3 {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

/* ===== Program ===== */
.program-card {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,255,0.98));
}

.program-card h3 {
  margin-top: 2rem;
}

/* ===== Profil Pelatih ===== */
.profil-card {
  border-radius: 24px;
  overflow: hidden;
}

.profil-image {
  overflow: hidden;
}

.profil-image img {
  transition: transform 0.55s ease;
}

.profil-card:hover .profil-image img {
  transform: scale(1.07);
}

.social-link {
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

/* ===== Paket ===== */
.paket-card {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,251,255,0.97));
}

/* ===== Testimoni ===== */
.testimoni-card {
  border-radius: 24px;
  padding: 1.7rem;
}

.testimoni-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimoni-author {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.testimoni-rating {
  color: #111827;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-box {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,255,0.96));
}

.faq-item {
  border-radius: 18px;
}

.faq-question {
  font-size: 1.08rem;
}

/* ===== CTA Premium ===== */
.cta-block {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent 18%),
    linear-gradient(135deg, #11b9dc 0%, #009cd0 45%, #0077b6 100%);
  box-shadow: 0 -10px 38px rgba(15, 23, 42, 0.05);
}

.cta-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

/* ===== Footer Premium ===== */
.footer {
  background:
    linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

.footer-logo {
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 18px;
}

/* ===== Scroll reveal upgrade ===== */
.fade-in {
  opacity: 0;
  transform: translateY(38px) scale(0.98);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    filter 0.9s ease;
  filter: blur(6px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ===== Floating whatsapp ===== */
.btn-whatsapp {
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.28);
}

/* ===== Premium responsive ===== */
@media (max-width: 768px) {
  .hero-edubia {
    padding: 105px 20px 90px;
  }

  .hero-text h1 {
    max-width: 100%;
    text-align: center;
  }

  .hero-text p {
    text-align: center;
    padding: 0;
  }

  .section-title::after {
    width: 56px;
  }

  .card,
  .stat-box,
  .program-card,
  .profil-card,
  .paket-card,
  .testimoni-card {
    border-radius: 22px;
  }
}

/* ===== Reduce motion accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ===== Premium Testimonial Slider ===== */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  animation: scrollTestimonials 34s linear infinite;
}

.testimonial-slide {
  flex: 0 0 340px;
  max-width: 340px;
}

.testimonial-slide .testimoni-card {
  height: 100%;
  min-height: 270px;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 280px;
    max-width: 280px;
  }

  .testimonial-track {
    gap: 1rem;
    animation-duration: 25s;
  }

  .testimonial-slide .testimoni-card {
    min-height: 240px;
  }
}

/* =========================
   PELATIH & FAQ PREMIUM
========================= */

.section-heading-premium {
  text-align: center;
  margin-bottom: 3rem;
}

.section-kicker {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.10);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

/* ===== Pelatih Premium ===== */
.coach-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.coach-card-premium {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.coach-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.13);
}

.coach-image-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.coach-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.coach-card-premium:hover .coach-image-wrap img {
  transform: scale(1.08);
}

.coach-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.02));
}

.coach-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.coach-content {
  padding: 1.5rem 1.4rem 1.4rem;
}

.coach-name-area {
  margin-bottom: 0.9rem;
}

.coach-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.coach-role {
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

.coach-description {
  color: #52606d;
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.coach-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.coach-socials-premium {
  display: flex;
  gap: 0.7rem;
}

.coach-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f8fc;
  color: var(--primary);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.coach-social-link:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  transform: translateY(-2px);
}

.coach-status-chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 700;
}

.coach-empty-state {
  text-align: center;
  padding: 2rem;
  border-radius: 22px;
  background: #fff;
  color: var(--gray);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* ===== FAQ Premium ===== */
.faq-premium-section {
  position: relative;
}

.faq-premium-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.faq-item-premium {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.faq-item-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}

.faq-item-premium.open {
  border-color: rgba(0, 180, 216, 0.20);
  box-shadow: 0 22px 44px rgba(0, 180, 216, 0.10);
}

.faq-question-premium {
  padding: 1.25rem 1.4rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.faq-number {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,180,216,0.12), rgba(0,119,182,0.12));
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.faq-question-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
}

.faq-icon-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5f9fc;
  color: var(--accent);
  transition: all 0.25s ease;
}

.faq-question.active .faq-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
}

.faq-answer-premium {
  padding: 0 1.4rem 1.35rem 5.45rem;
  color: #5f6c78;
  line-height: 1.8;
  font-size: 0.98rem;
  background: transparent;
  border-top: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .coach-grid-premium {
    gap: 1.4rem;
  }

  .coach-image-wrap {
    height: 260px;
  }

  .coach-content {
    padding: 1.2rem;
  }

  .faq-question-left {
    align-items: flex-start;
  }

  .faq-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.85rem;
  }

  .faq-question-text {
    font-size: 0.98rem;
  }

  .faq-answer-premium {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
}

/* =========================
   DAFTAR PAGE PREMIUM
========================= */

.daftar-premium-section {
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(0, 180, 216, 0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(0, 119, 182, 0.06), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
}

.daftar-premium-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.daftar-premium-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.daftar-premium-subtitle {
  font-size: 1.08rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 700px;
}

.daftar-alert {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.daftar-alert i {
  font-size: 1.2rem;
  margin-top: 2px;
}

.daftar-alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.daftar-alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.daftar-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.daftar-form-card,
.daftar-info-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.daftar-form-card {
  padding: 2rem;
}

.daftar-form-card-head {
  margin-bottom: 1.5rem;
}

.daftar-form-card-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 800;
}

.daftar-form-card-head p {
  margin: 0;
  color: var(--gray);
  line-height: 1.7;
}

.daftar-premium-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.daftar-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.daftar-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.daftar-field span {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
}

.daftar-field input,
.daftar-field select,
.daftar-field textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 1rem;
  background: #fbfdff;
  color: #0f172a;
  transition: all 0.25s ease;
}

.daftar-field input:focus,
.daftar-field select:focus,
.daftar-field textarea:focus {
  outline: none;
  border-color: rgba(0, 180, 216, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
  background: #fff;
}

.daftar-field textarea {
  min-height: 140px;
  resize: vertical;
}

.daftar-form-actions-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0.6rem;
}

.daftar-submit-btn,
.daftar-back-btn {
  padding: 1rem 1.4rem;
  border-radius: 16px;
}

.daftar-info-card {
  padding: 1.8rem;
  position: sticky;
  top: 110px;
}

.daftar-info-top {
  margin-bottom: 1.6rem;
}

.daftar-info-badge {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.daftar-info-top h3 {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
  line-height: 1.3;
  color: #0f172a;
}

.daftar-info-top p {
  margin: 0;
  color: var(--gray);
  line-height: 1.8;
}

.daftar-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.daftar-feature-item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.daftar-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(0,119,182,0.15));
  color: var(--primary);
  font-size: 1.1rem;
}

.daftar-feature-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #0f172a;
}

.daftar-feature-item p {
  margin: 0;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.94rem;
}

.daftar-contact-box {
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.22);
}

.daftar-contact-box h4 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.daftar-contact-box p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

.daftar-contact-box .btn {
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.daftar-contact-box .btn:hover {
  background: #f8fafc;
}

@media (max-width: 992px) {
  .daftar-premium-grid {
    grid-template-columns: 1fr;
  }

  .daftar-info-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .daftar-premium-section {
    padding: 110px 0 70px;
  }

  .daftar-form-card,
  .daftar-info-card {
    border-radius: 24px;
  }

  .daftar-form-card {
    padding: 1.4rem;
  }

  .daftar-info-card {
    padding: 1.4rem;
  }

  .daftar-field-grid {
    grid-template-columns: 1fr;
  }

  .daftar-form-actions-premium {
    flex-direction: column;
  }

  .daftar-submit-btn,
  .daftar-back-btn {
    width: 100%;
  }
}

/* =========================
   COACH SLIDER PREMIUM
========================= */

.coach-slider-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coach-slider-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.2rem 1rem;
}

.coach-slider-viewport::-webkit-scrollbar {
  display: none;
}

.coach-slider-track {
  display: flex;
  gap: 1.5rem;
}

.coach-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  scroll-snap-align: start;
}

.coach-slider-btn {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.coach-slider-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
}

.coach-slider-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.coach-slider-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
}

@media (max-width: 1024px) {
  .coach-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }
}

/* =========================
   COACH SLIDER FIX - MOBILE STACK
========================= */

@media (max-width: 768px) {
  .coach-slider-shell {
    display: block !important;
  }

  .coach-slider-btn,
  .coach-slider-btn-prev,
  .coach-slider-btn-next {
    display: none !important;
  }

  .coach-slider-viewport {
    overflow: visible !important;
    width: 100% !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
  }

  .coach-slider-track {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
    transform: none !important;
  }

  .coach-slide {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin-bottom: 1.4rem !important;
  }

  .coach-card-premium {
    width: 100% !important;
    height: auto !important;
  }

  .coach-image-wrap {
    height: 260px !important;
  }

  .coach-content {
    display: block !important;
    padding: 1.2rem !important;
  }

  .coach-description {
    flex-grow: unset !important;
  }

  .coach-footer {
    margin-top: 1rem !important;
  }
}

/* Samakan tinggi card slider pelatih */
.coach-slider-track {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.coach-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  display: flex;
}

.coach-card-premium {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.coach-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.coach-description {
  flex-grow: 1;
}

.coach-footer {
  margin-top: auto;
}

/* Samakan tinggi card slider pelatih */
.coach-slider-track {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.coach-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  display: flex;
}

.coach-card-premium {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.coach-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.coach-description {
  flex-grow: 1;
}

.coach-footer {
  margin-top: auto;
}

.testimoni-button {
  margin-top: 2rem;
  text-align: center;
}

.testimoni-button .btn {
  min-width: 220px;
  justify-content: center;
}

/* Rating radio stars */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  margin: 10px 0 18px;
}

.rating-input input {
  display: none;
}

.rating-input label {
  font-size: 2rem;
  line-height: 1;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label {
  color: #facc15;
  transform: scale(1.05);
}

.rating-input input:checked ~ label {
  color: #facc15;
}

/* =========================
   PREMIUM MOTION PACK
========================= */

/* Reveal lebih halus */
.fade-in {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Hero image float */
.hero-image,
.hero-inline-image,
.cta-icon {
  animation: premiumFloat 5.5s ease-in-out infinite;
}

@keyframes premiumFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Background orb hero */
.hero-edubia::before,
.hero-edubia::after {
  animation: heroOrbMove 12s ease-in-out infinite;
}

@keyframes heroOrbMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10px, -16px) scale(1.05);
  }
}

/* Card hover premium */
.card,
.stat-box,
.program-card,
.profil-card,
.paket-card,
.testimoni-card,
.coach-card-premium {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card:hover,
.stat-box:hover,
.program-card:hover,
.profil-card:hover,
.paket-card:hover,
.testimoni-card:hover,
.coach-card-premium:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

/* Tombol premium shine */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 90px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn:hover::after {
  left: 160%;
}

/* Tombol utama glow */
.btn-filled {
  box-shadow: 0 12px 28px rgba(255, 221, 0, 0.22);
}

.btn-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 221, 0, 0.28);
}

/* FAQ animasi lebih smooth */
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  opacity: 1;
  padding: 0 2rem 1.5rem;
}

/* Testimoni sedikit glow */
.testimoni-card {
  position: relative;
}

.testimoni-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(0,180,216,0.06),
    transparent 35%,
    rgba(0,119,182,0.04)
  );
  pointer-events: none;
}

/* Judul section lebih hidup */
.section-title {
  position: relative;
}

.section-title::after {
  transition: width 0.35s ease;
}

.section:hover .section-title::after {
  width: 92px;
}

/* WhatsApp floating */
.btn-whatsapp {
  animation: waPulse 2.8s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.34);
  }
}

/* Rating bintang modal */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  margin: 10px 0 18px;
}

.rating-input input {
  display: none;
}

.rating-input label {
  font-size: 2rem;
  line-height: 1;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label {
  color: #facc15;
  transform: scale(1.08);
}

.rating-input input:checked ~ label {
  color: #facc15;
}

/* Kurangi motion untuk user tertentu */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.card,
.stat-box,
.program-card,
.paket-card,
.testimoni-card,
.coach-card-premium,
.faq-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.visible,
.stat-box.visible,
.program-card.visible,
.paket-card.visible,
.testimoni-card.visible,
.coach-card-premium.visible,
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   LANDING PAGE FINAL POLISH
   Tambahkan di paling bawah main.css
========================= */

/* ===== Global improvement ===== */
:root {
  --primary-dark: #075985;
  --soft-blue: #e0f7ff;
  --soft-border: rgba(15, 23, 42, 0.08);
}

.section {
  padding: 96px 0;
}

.section-heading-premium {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.section-kicker {
  background: rgba(0, 180, 216, 0.10);
  color: var(--primary);
}

.section-title {
  color: var(--primary-dark);
}

.section-subtitle {
  color: #64748b;
  line-height: 1.8;
}

/* ===== Hero final ===== */
.hero-edubia {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  padding: 110px 20px 90px;
}

.hero-container {
  width: 100%;
}

.hero-text {
  max-width: 620px;
}

.hero-text h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.4vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 1.4rem;
}

.hero-text p {
  max-width: 590px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-highlight-item i {
  color: var(--yellow);
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-buttons .btn {
  min-width: 190px;
  text-align: center;
}

.hero-image-card {
  position: relative;
  width: min(100%, 520px);
  padding: 1.4rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.20);
}

.hero-image-card .hero-image {
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.hero-floating-card {
  position: absolute;
  width: 190px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-floating-card strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.hero-floating-card span {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-floating-card-top {
  top: 18px;
  left: -34px;
}

.hero-floating-card-bottom {
  right: -28px;
  bottom: 26px;
}

/* ===== Benefit cards ===== */
.feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.16), rgba(0, 119, 182, 0.14));
  color: var(--primary);
  font-size: 1.55rem;
}

.card {
  border-radius: 28px;
}

.card h3 {
  color: var(--primary-dark);
}

.card p {
  color: #64748b;
}

/* ===== Program cards final ===== */
.program-card {
  min-height: 430px;
}

.program-card p {
  position: relative;
  z-index: 1;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: center;
}

.program-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 119, 182, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 119, 182, 0.24);
}

/* ===== Paket section polish ===== */
.paket-card {
  text-align: left;
}

.paket-header {
  padding-right: 7rem;
}

.paket-info li {
  padding-left: 0;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.paket-info li::before {
  display: none;
}

.paket-info i {
  width: 20px;
  margin-top: 0.25rem;
  color: var(--accent);
}

/* ===== Testimonial final ===== */
.testimoni-card {
  text-align: left;
  border-radius: 26px;
}

.testimoni-rating {
  color: #facc15;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.testimoni-author {
  color: var(--primary);
}

.testimoni-text {
  color: #334155;
}

/* ===== Modal polish ===== */
.modal {
  z-index: 10000;
  padding: 1.2rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  margin: 8vh auto;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid var(--soft-border);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

.modal-content h2 {
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.close-btn {
  float: none;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: #e2e8f0;
}

.modal label {
  display: block;
  margin-top: 1rem;
  color: #0f172a;
  font-weight: 700;
}

.modal input,
.modal textarea {
  border-radius: 16px;
  border: 1px solid #dbe4ee;
  background: #fbfdff;
  padding: 0.85rem 1rem;
}

.modal input:focus,
.modal textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
}

.modal button[type="submit"] {
  width: 100%;
  margin-top: 1rem;
}

/* ===== CTA final ===== */
.cta-buttons {
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.cta-buttons .btn-outline:hover {
  background: #ffffff;
  color: var(--primary);
}

/* ===== Mobile final ===== */
@media (max-width: 992px) {
  .hero-edubia {
    min-height: auto;
  }

  .hero-text h1 {
    max-width: 100%;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-image-card {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-heading-premium {
    margin-bottom: 2.2rem;
  }

  .hero-edubia {
    padding: 92px 18px 76px;
    border-bottom-left-radius: 44px;
    border-bottom-right-radius: 44px;
  }

  .hero-text h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    line-height: 1.08;
  }

  .hero-text p {
    font-size: 1rem;
    text-align: center;
  }

  .hero-kicker {
    background: rgba(255, 255, 255, 0.18);
  }

  .hero-highlights {
    justify-content: center;
  }

  .hero-highlight-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .program-card {
    min-height: auto;
  }

  .paket-header {
    padding-right: 0;
    padding-top: 2.2rem;
  }

  .paket-card::before {
    left: 1.2rem;
    right: auto;
  }

  .testimonial-slider {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .modal-content {
    margin: 5vh auto;
    padding: 1.5rem;
    border-radius: 22px;
  }
}

/* =========================
   COACH INFINITE MARQUEE
========================= */

.coach-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.8rem 0 1.5rem;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.coach-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  animation: coachMarqueeRight 38s linear infinite;
}

.coach-marquee-slide {
  flex: 0 0 360px;
  width: 360px;
  display: flex;
}

.coach-marquee-slide .coach-card-premium {
  width: 100%;
  height: 100%;
}

/* Bergerak ke kiri */
@keyframes coachMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Kalau ingin bergerak ke kanan, ganti animation di .coach-marquee-track:
   animation: coachMarqueeRight 38s linear infinite;
*/
@keyframes coachMarqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Matikan style slider lama */
.coach-slider-shell,
.coach-slider-viewport,
.coach-slider-track,
.coach-slide {
  all: unset;
}

/* Rapikan ulang card karena all: unset bisa memengaruhi kalau class lama masih ada */
.coach-card-premium {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.coach-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.13);
}

.coach-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.coach-description {
  flex-grow: 1;
}

.coach-footer {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .coach-marquee-slide {
    flex-basis: 320px;
    width: 320px;
  }

  .coach-marquee-track {
    animation-duration: 32s;
  }
}

@media (max-width: 768px) {
  .coach-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .coach-marquee-track {
    gap: 1rem;
    animation-duration: 28s;
  }

  .coach-marquee-slide {
    flex-basis: 280px;
    width: 280px;
  }

  .coach-image-wrap {
    height: 240px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coach-marquee-track {
    animation: none !important;
    transform: none !important;
  }
}

/* =========================
   NAVBAR LIGHT GRADIENT PREMIUM
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  background:
    linear-gradient(135deg, #ffffff 0%, #f0fbff 48%, #dff7ff 100%);
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(224, 247, 255, 0.94));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.nav-container {
  min-height: 74px;
}

.logo {
  text-decoration: none !important;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo span {
  color: #0f2a44;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 900;
  text-shadow: 0 8px 22px rgba(14, 165, 233, 0.10);
}

.navbar-logo {
  max-width: 76px;
  height: auto;
  margin-left: 0;
  margin-right: 0.8rem;
  padding: 0.28rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.nav-links {
  align-items: center;
  gap: 0.45rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: #102a43;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-links a:hover {
  color: #0077b6;
  background: rgba(14, 165, 233, 0.10);
  transform: translateY(-1px);
}

.nav-links a::after {
  display: none;
}

/* Tombol daftar */
.nav-links a.nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  padding: 0.72rem 1.35rem;
  box-shadow: 0 14px 28px rgba(0, 119, 182, 0.22);
}

.nav-links a.nav-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 18px 34px rgba(0, 119, 182, 0.30);
}

/* Hamburger */
.nav-toggle {
  color: #0f2a44;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.10);
  border: 1px solid rgba(14, 165, 233, 0.16);
}

.nav-toggle:hover {
  background: rgba(14, 165, 233, 0.16);
}

/* Mobile navbar */
@media (max-width: 768px) {
  .navbar {
    padding: 0.85rem 0;
  }

  .nav-container {
    min-height: 64px;
  }

  .navbar-logo {
    max-width: 58px;
    margin-left: 0;
    margin-right: 0.55rem;
  }

  .logo span {
    font-size: 1.55rem;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 22px;
    background:
      linear-gradient(135deg, #ffffff 0%, #f0fbff 50%, #e0f7ff 100%);
    border: 1px solid rgba(14, 165, 233, 0.18);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
  }

  .nav-links li {
    width: 100%;
    margin: 0.25rem 0;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
    color: #102a43;
  }

  .nav-links a.nav-cta {
    margin-top: 0.4rem;
  }
}

/* =========================
   COACH MARQUEE CLEAN EDGE
========================= */

.coach-marquee {
  overflow: hidden;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

/* =========================
   ADMIN TOPBAR PREMIUM
========================= */

.admin-topbar {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.8rem;
  margin-bottom: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.92));
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.admin-topbar::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.10);
  pointer-events: none;
}

.admin-topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.38),
      transparent
    );
  transform: translateX(-100%);
  animation: adminTopbarShine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes adminTopbarShine {
  0%, 70% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.admin-topbar-left,
.admin-userbox {
  position: relative;
  z-index: 2;
}

.admin-topbar-left {
  min-width: 0;
}

.admin-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.10);
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-breadcrumb i {
  font-size: 0.85rem;
}

.admin-topbar h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.admin-topbar p {
  margin: 0.45rem 0 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
}

.admin-userbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  padding: 0.55rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.admin-user-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-left: 0.2rem;
}

.admin-avatar {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.25rem;
  background:
    linear-gradient(135deg, #22d3ee 0%, #0284c7 48%, #075985 100%);
  box-shadow:
    0 14px 28px rgba(2, 132, 199, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.admin-usertext {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-usertext strong {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.admin-usertext span {
  max-width: 210px;
  margin-top: 0.22rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-logout-form {
  margin: 0;
}

.admin-logout-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  background:
    linear-gradient(135deg, #22d3ee 0%, #0284c7 52%, #075985 100%);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.24);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.admin-logout-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(2, 132, 199, 0.32);
}

.admin-logout-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-userbox {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .admin-topbar {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .admin-topbar p {
    font-size: 0.92rem;
  }

  .admin-userbox {
    align-items: stretch;
    flex-direction: column;
    padding: 0.8rem;
  }

  .admin-user-profile {
    padding-left: 0;
  }

  .admin-usertext span {
    max-width: 100%;
  }

  .admin-logout-btn {
    width: 100%;
  }
}

/* =========================
   LUXURY ADMIN DASHBOARD
========================= */

.lux-dashboard {
  position: relative;
  display: grid;
  gap: 1.7rem;
}

.lux-dashboard::before {
  content: "";
  position: fixed;
  top: 12%;
  right: 5%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  filter: blur(4px);
  pointer-events: none;
  z-index: -1;
}

.lux-dashboard-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.28), transparent 28%),
    linear-gradient(135deg, #071827 0%, #0f2a44 48%, #0369a1 100%);
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lux-dashboard-hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.lux-dashboard-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.13),
      transparent
    );
  transform: translateX(-100%);
  animation: luxHeroShine 7s ease-in-out infinite;
}

@keyframes luxHeroShine {
  0%, 70% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.lux-dashboard-hero > * {
  position: relative;
  z-index: 2;
}

.lux-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: #e0f7ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.lux-dashboard-hero h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.lux-dashboard-hero p {
  max-width: 680px;
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.lux-dashboard-hero-icon {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

/* ===== Stats ===== */
.lux-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.lux-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 1.45rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.92));
  border: 1px solid rgba(14, 165, 233, 0.13);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lux-stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow:
    0 32px 75px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.lux-stat-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -82px;
  right: -74px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
}

.lux-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.45),
      transparent
    );
  transform: translateX(-120%);
  transition: transform 0.75s ease;
}

.lux-stat-card:hover::after {
  transform: translateX(120%);
}

.lux-stat-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  right: 22px;
  bottom: -46px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.10);
  filter: blur(2px);
}

.lux-stat-top,
.lux-stat-body {
  position: relative;
  z-index: 2;
}

.lux-stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.lux-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow:
    0 16px 30px rgba(2, 132, 199, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.lux-stat-note {
  max-width: 120px;
  text-align: right;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
}

.lux-stat-body h4 {
  margin: 0 0 0.45rem;
  color: #64748b;
  font-size: 0.94rem;
  font-weight: 900;
}

.lux-stat-body h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.lux-success .lux-stat-icon {
  background: linear-gradient(135deg, #34d399, #059669);
}

.lux-info .lux-stat-icon {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.lux-warning .lux-stat-icon {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.lux-payment .lux-stat-icon {
  background: linear-gradient(135deg, #22c55e, #0284c7);
}

.lux-danger .lux-stat-icon {
  background: linear-gradient(135deg, #fb7185, #e11d48);
}

/* ===== Panels ===== */
.lux-summary-grid,
.lux-table-grid {
  display: grid;
  gap: 1.35rem;
}

.lux-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lux-table-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lux-panel {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lux-panel::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -80px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.07);
}

.lux-panel-head,
.lux-table-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.lux-panel-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  color: #0369a1;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.74rem;
  font-weight: 900;
}

.lux-panel h3,
.lux-table-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lux-panel p,
.lux-table-head p {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lux-panel-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.10);
  font-size: 1.1rem;
}

/* ===== Status ===== */
.lux-status-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.lux-status-card {
  min-width: 125px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  color: #075985;
  background:
    linear-gradient(135deg, #e0f2fe, #f8fbff);
  border: 1px solid rgba(14, 165, 233, 0.13);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.lux-status-card span {
  font-size: 0.84rem;
  font-weight: 900;
}

.lux-status-card strong {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 900;
}

.lux-status-neutral {
  color: #334155;
  background:
    linear-gradient(135deg, #f1f5f9, #ffffff);
}

.lux-empty {
  width: 100%;
  padding: 1rem;
  border-radius: 18px;
  color: #64748b;
  background: rgba(248, 250, 252, 0.85);
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

/* ===== Tables ===== */
.lux-table-panel {
  padding-bottom: 1rem;
}

.lux-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: max-content;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  color: #075985;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.14);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.lux-link-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
}

.lux-table-responsive {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: auto;
}

.lux-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.lux-table thead th {
  padding: 0.9rem 0.85rem;
  color: #64748b;
  background: rgba(248, 250, 252, 0.92);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.lux-table thead th:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.lux-table thead th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.lux-table tbody td {
  padding: 1rem 0.85rem;
  color: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  vertical-align: middle;
}

.lux-table tbody tr {
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.lux-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.045);
}

.lux-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 190px;
}

.lux-person-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-person strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-person span {
  display: block;
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-badge,
.lux-method-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-badge {
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
}

.lux-badge-baru,
.lux-status-baru {
  color: #1d4ed8;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.lux-badge-dihubungi,
.lux-status-dihubungi {
  color: #7c3aed;
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

.lux-badge-terjadwal,
.lux-status-terjadwal {
  color: #047857;
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
}

.lux-badge-selesai,
.lux-status-selesai {
  color: #0f766e;
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
}

.lux-badge-batal,
.lux-status-batal {
  color: #be123c;
  background: linear-gradient(135deg, #ffe4e6, #fff1f2);
}

.lux-method-pill {
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
}

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .lux-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-summary-grid,
  .lux-table-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.4rem;
    border-radius: 26px;
  }

  .lux-dashboard-hero-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
  }

  .lux-stat-grid {
    grid-template-columns: 1fr;
  }

  .lux-panel {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .lux-panel-head,
  .lux-table-head {
    flex-direction: column;
  }

  .lux-link-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   LUXURY ADMIN DASHBOARD + CHARTS
========================= */

.lux-dashboard {
  position: relative;
  display: grid;
  gap: 1.7rem;
}

.lux-dashboard::before {
  content: "";
  position: fixed;
  top: 12%;
  right: 5%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  filter: blur(4px);
  pointer-events: none;
  z-index: -1;
}

.lux-dashboard-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.28), transparent 28%),
    linear-gradient(135deg, #071827 0%, #0f2a44 48%, #0369a1 100%);
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lux-dashboard-hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.lux-dashboard-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.13),
      transparent
    );
  transform: translateX(-100%);
  animation: luxHeroShine 7s ease-in-out infinite;
}

@keyframes luxHeroShine {
  0%, 70% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.lux-dashboard-hero > * {
  position: relative;
  z-index: 2;
}

.lux-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: #e0f7ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.lux-dashboard-hero h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.lux-dashboard-hero p {
  max-width: 680px;
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.lux-hero-metrics {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.lux-hero-metric {
  min-width: 125px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.lux-hero-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.lux-hero-metric strong {
  display: block;
  margin-top: 0.25rem;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
}

.lux-dashboard-hero-icon {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Stats */
.lux-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.lux-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 1.45rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.92));
  border: 1px solid rgba(14, 165, 233, 0.13);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lux-stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow:
    0 32px 75px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.lux-stat-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -82px;
  right: -74px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.09);
}

.lux-stat-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  right: 22px;
  bottom: -46px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.10);
  filter: blur(2px);
}

.lux-stat-top,
.lux-stat-body {
  position: relative;
  z-index: 2;
}

.lux-stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.lux-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow:
    0 16px 30px rgba(2, 132, 199, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.lux-stat-note {
  max-width: 120px;
  text-align: right;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
}

.lux-stat-body h4 {
  margin: 0 0 0.45rem;
  color: #64748b;
  font-size: 0.94rem;
  font-weight: 900;
}

.lux-stat-body h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.lux-success .lux-stat-icon {
  background: linear-gradient(135deg, #34d399, #059669);
}

.lux-info .lux-stat-icon {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.lux-warning .lux-stat-icon {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.lux-payment .lux-stat-icon {
  background: linear-gradient(135deg, #22c55e, #0284c7);
}

.lux-danger .lux-stat-icon {
  background: linear-gradient(135deg, #fb7185, #e11d48);
}

/* Panels and charts */
.lux-chart-grid,
.lux-summary-grid,
.lux-table-grid {
  display: grid;
  gap: 1.35rem;
}

.lux-chart-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lux-summary-grid,
.lux-table-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lux-panel {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lux-panel::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -80px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.07);
}

.lux-panel-head,
.lux-table-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.lux-panel-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  color: #0369a1;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.74rem;
  font-weight: 900;
}

.lux-panel h3,
.lux-table-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lux-panel p,
.lux-table-head p {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lux-panel-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.10);
  font-size: 1.1rem;
}

.lux-chart-card {
  min-height: 430px;
}

.lux-chart-box {
  position: relative;
  z-index: 2;
  height: 255px;
  padding: 0.5rem 0.2rem 0;
}

.lux-chart-box canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Status */
.lux-status-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.lux-status-card {
  min-width: 125px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  color: #075985;
  background:
    linear-gradient(135deg, #e0f2fe, #f8fbff);
  border: 1px solid rgba(14, 165, 233, 0.13);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.lux-status-card span {
  font-size: 0.84rem;
  font-weight: 900;
}

.lux-status-card strong {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 900;
}

.lux-status-neutral {
  color: #334155;
  background:
    linear-gradient(135deg, #f1f5f9, #ffffff);
}

.lux-empty {
  width: 100%;
  padding: 1rem;
  border-radius: 18px;
  color: #64748b;
  background: rgba(248, 250, 252, 0.85);
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

/* Tables */
.lux-table-panel {
  padding-bottom: 1rem;
}

.lux-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: max-content;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  color: #075985;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.14);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.lux-link-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
}

.lux-table-responsive {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: auto;
}

.lux-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.lux-table thead th {
  padding: 0.9rem 0.85rem;
  color: #64748b;
  background: rgba(248, 250, 252, 0.92);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.lux-table thead th:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.lux-table thead th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.lux-table tbody td {
  padding: 1rem 0.85rem;
  color: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  vertical-align: middle;
}

.lux-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.045);
}

.lux-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 190px;
}

.lux-person-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-person strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-person span {
  display: block;
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-badge,
.lux-method-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-badge {
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
}

.lux-badge-baru,
.lux-status-baru {
  color: #1d4ed8;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.lux-badge-dihubungi,
.lux-status-dihubungi {
  color: #7c3aed;
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

.lux-badge-terjadwal,
.lux-status-terjadwal {
  color: #047857;
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
}

.lux-badge-selesai,
.lux-status-selesai {
  color: #0f766e;
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
}

.lux-badge-batal,
.lux-status-batal {
  color: #be123c;
  background: linear-gradient(135deg, #ffe4e6, #fff1f2);
}

.lux-method-pill {
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
}

/* Responsive */
@media (max-width: 1280px) {
  .lux-chart-grid {
    grid-template-columns: 1fr;
  }

  .lux-chart-card {
    min-height: 390px;
  }
}

@media (max-width: 1180px) {
  .lux-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-summary-grid,
  .lux-table-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.4rem;
    border-radius: 26px;
  }

  .lux-hero-metrics {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .lux-dashboard-hero-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
  }

  .lux-stat-grid {
    grid-template-columns: 1fr;
  }

  .lux-panel {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .lux-panel-head,
  .lux-table-head {
    flex-direction: column;
  }

  .lux-link-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   CLEAN LUXURY ADMIN DASHBOARD
========================= */

.lux-dashboard-clean {
  display: grid;
  gap: 1.5rem;
}

.lux-clean-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.9rem 2rem;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.24), transparent 30%),
    linear-gradient(135deg, #071827 0%, #0f2a44 52%, #075985 100%);
  box-shadow:
    0 30px 75px rgba(2, 6, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lux-clean-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -130px;
  right: -90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.lux-clean-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: luxCleanShine 7s ease-in-out infinite;
}

@keyframes luxCleanShine {
  0%, 70% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.lux-clean-hero > * {
  position: relative;
  z-index: 2;
}

.lux-clean-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  color: #e0f7ff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.lux-clean-hero h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.lux-clean-hero p {
  max-width: 680px;
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.lux-clean-hero-card {
  min-width: 260px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.lux-clean-hero-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.lux-clean-hero-card strong {
  display: block;
  margin: 0.45rem 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.lux-clean-hero-card small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

/* Stats */
.lux-clean-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.lux-clean-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 1.35rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(14, 165, 233, 0.13);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.lux-clean-stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.lux-clean-stat-card::before {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  top: -80px;
  right: -70px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
}

.lux-clean-stat-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.22);
}

.lux-clean-stat-text {
  position: relative;
  z-index: 2;
}

.lux-clean-stat-text span {
  display: block;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.lux-clean-stat-text h3 {
  margin: 0 0 0.45rem;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 900;
}

.lux-clean-stat-text strong {
  display: block;
  color: #0f172a;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.lux-success .lux-clean-stat-icon {
  background: linear-gradient(135deg, #34d399, #059669);
}

.lux-info .lux-clean-stat-icon {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.lux-payment .lux-clean-stat-icon {
  background: linear-gradient(135deg, #22c55e, #0284c7);
}

/* Main grid */
.lux-clean-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.35rem;
}

.lux-clean-panel {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lux-clean-panel::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -80px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.07);
}

.lux-clean-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.lux-clean-panel-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  color: #0369a1;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.74rem;
  font-weight: 900;
}

.lux-clean-panel h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lux-clean-panel p {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lux-clean-panel-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.10);
}

.lux-clean-chart-box {
  position: relative;
  z-index: 2;
  height: 230px;
}

.lux-clean-chart-box canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Status */
.lux-clean-status-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.lux-clean-status-pill {
  min-width: 110px;
  padding: 0.75rem 0.9rem;
  border-radius: 18px;
  color: #075985;
  background: linear-gradient(135deg, #e0f2fe, #f8fbff);
  border: 1px solid rgba(14, 165, 233, 0.13);
  display: inline-flex;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.lux-clean-status-pill span {
  font-size: 0.82rem;
  font-weight: 900;
}

.lux-clean-status-pill strong {
  color: #0f172a;
  font-weight: 900;
}

/* Latest list */
.lux-clean-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.9rem;
}

.lux-clean-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: background 0.22s ease, transform 0.22s ease;
}

.lux-clean-list-item:hover {
  transform: translateY(-2px);
  background: rgba(240, 249, 255, 0.9);
}

.lux-clean-avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-clean-list-content strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-clean-list-content span {
  display: block;
  margin-top: 0.16rem;
  color: #64748b;
  font-size: 0.8rem;
}

.lux-clean-list-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.lux-clean-list-right small {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 800;
}

.lux-clean-badge {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.74rem;
  font-weight: 900;
}

/* Payments */
.lux-clean-payment-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.lux-clean-payment-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.lux-clean-payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.10);
}

.lux-clean-payment-card strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-clean-payment-card span {
  display: block;
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.8rem;
}

.lux-clean-payment-amount {
  text-align: right;
}

.lux-clean-payment-amount strong {
  font-size: 0.95rem;
}

.lux-clean-payment-amount span {
  font-weight: 900;
  color: #0284c7;
}

.lux-clean-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: max-content;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  color: #075985;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.14);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.lux-clean-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
}

.lux-clean-empty {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1rem;
  border-radius: 18px;
  color: #64748b;
  background: rgba(248, 250, 252, 0.85);
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .lux-clean-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-clean-main-grid {
    grid-template-columns: 1fr;
  }

  .lux-clean-payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-clean-hero {
    flex-direction: column;
    padding: 1.4rem;
    border-radius: 26px;
  }

  .lux-clean-hero-card {
    width: 100%;
    min-width: 0;
  }

  .lux-clean-stat-grid {
    grid-template-columns: 1fr;
  }

  .lux-clean-panel {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .lux-clean-panel-head {
    flex-direction: column;
  }

  .lux-clean-link {
    width: 100%;
    justify-content: center;
  }

  .lux-clean-list-item,
  .lux-clean-payment-card {
    grid-template-columns: auto 1fr;
  }

  .lux-clean-list-right,
  .lux-clean-payment-amount {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }
}

/* =========================
   LUXURY ADMIN SIDEBAR
========================= */

.lux-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.35rem 1rem;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(2, 132, 199, 0.16), transparent 32%),
    linear-gradient(180deg, #071827 0%, #0b172a 48%, #0f172a 100%);
  border-right: 1px solid rgba(125, 211, 252, 0.12);
  box-shadow:
    18px 0 45px rgba(15, 23, 42, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.04);
}

.lux-sidebar::-webkit-scrollbar {
  width: 6px;
}

.lux-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.lux-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.22);
}

.lux-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0.55rem 1.1rem;
}

.lux-sidebar-logo-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 36px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.lux-sidebar-logo-wrap img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.lux-sidebar-brand-text {
  min-width: 0;
}

.lux-sidebar-brand-text span {
  display: inline-flex;
  margin-bottom: 0.25rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lux-sidebar-brand-text h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.lux-sidebar-brand-text p {
  margin: 0.35rem 0 0;
  color: rgba(226, 232, 240, 0.70);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

.lux-sidebar-divider {
  height: 1px;
  margin: 0.35rem 0 1rem;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(125, 211, 252, 0.28),
      transparent
    );
}

.lux-sidebar-menu {
  display: grid;
  gap: 1rem;
}

.lux-sidebar-group {
  display: grid;
  gap: 0.45rem;
}

.lux-sidebar-section {
  padding: 0 0.65rem;
  color: rgba(226, 232, 240, 0.46);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lux-sidebar-nav {
  display: grid;
  gap: 0.35rem;
}

.lux-sidebar-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.78rem;
  min-height: 50px;
  padding: 0.72rem 0.8rem;
  border-radius: 18px;
  color: rgba(226, 232, 240, 0.82);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.lux-sidebar-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.12),
      rgba(2, 132, 199, 0.08)
    );
  opacity: 0;
  transition: opacity 0.24s ease;
}

.lux-sidebar-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.lux-sidebar-link:hover::before {
  opacity: 1;
}

.lux-sidebar-link.active {
  color: #ffffff;
  background:
    linear-gradient(135deg, #22d3ee 0%, #0284c7 52%, #075985 100%);
  box-shadow:
    0 16px 32px rgba(2, 132, 199, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lux-sidebar-link.active::before {
  opacity: 0;
}

.lux-sidebar-icon,
.lux-sidebar-title,
.lux-sidebar-active-dot {
  position: relative;
  z-index: 2;
}

.lux-sidebar-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #7dd3fc;
  background: rgba(255, 255, 255, 0.07);
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.lux-sidebar-link:hover .lux-sidebar-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
}

.lux-sidebar-link.active .lux-sidebar-icon {
  color: #075985;
  background: rgba(255, 255, 255, 0.92);
}

.lux-sidebar-title {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.lux-sidebar-active-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.lux-sidebar-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 0.95rem;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.055)
    );
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.lux-sidebar-footer-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
  background: rgba(255, 255, 255, 0.08);
}

.lux-sidebar-footer strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
}

.lux-sidebar-footer span {
  display: block;
  margin-top: 0.18rem;
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.74rem;
  line-height: 1.35;
}

/* Mobile or small admin layout */
@media (max-width: 992px) {
  .lux-sidebar {
    position: relative;
    height: auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid rgba(125, 211, 252, 0.12);
  }

  .lux-sidebar-menu {
    gap: 0.8rem;
  }

  .lux-sidebar-nav {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .lux-sidebar-footer {
    display: none;
  }
}

@media (max-width: 560px) {
  .lux-sidebar {
    padding: 1rem;
  }

  .lux-sidebar-brand {
    align-items: flex-start;
  }

  .lux-sidebar-logo-wrap {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .lux-sidebar-logo-wrap img {
    width: 44px;
    height: 44px;
  }

  .lux-sidebar-brand-text h2 {
    font-size: 1.25rem;
  }

  .lux-sidebar-nav {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ADMIN RESPONSIVE SIDEBAR TOGGLE
========================= */

.admin-sidebar-toggle {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.28);
}

.admin-sidebar-toggle i {
  font-size: 1.15rem;
}

.admin-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.admin-mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.lux-sidebar-mobile-head {
  display: none;
}

body.admin-sidebar-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .admin-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .admin-layout {
    display: block;
  }

  .admin-main {
    width: 100%;
    margin-left: 0 !important;
    padding-top: 76px;
  }

  .admin-sidebar,
  .lux-sidebar {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 1100;
    width: min(86vw, 340px);
    height: 100vh;
    max-height: 100vh;
    transform: translateX(-105%);
    transition: transform 0.3s ease;
    border-right: 1px solid rgba(125, 211, 252, 0.16);
    border-bottom: none;
  }

  .admin-sidebar.is-open,
  .lux-sidebar.is-open {
    transform: translateX(0);
  }

  .lux-sidebar-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.35rem 0.8rem;
    border-bottom: 1px solid rgba(125, 211, 252, 0.14);
  }

  .lux-sidebar-mobile-head span {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .lux-sidebar-close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
  }

  .lux-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.16);
  }

  .lux-sidebar-nav {
    grid-template-columns: 1fr;
  }

  .lux-sidebar-footer {
    display: flex;
  }
}

@media (max-width: 560px) {
  .admin-sidebar-toggle {
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .admin-sidebar,
  .lux-sidebar {
    width: min(90vw, 320px);
  }

  .admin-main {
    padding-top: 68px;
  }
}

/* =========================
   SIDEBAR MOBILE CLOSE HEADER
========================= */

.lux-sidebar-mobile-head {
  display: none;
}

.lux-sidebar-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  transition: background 0.22s ease, transform 0.22s ease;
}

.lux-sidebar-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .lux-sidebar-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
    padding: 0.35rem 0.35rem 0.85rem;
    border-bottom: 1px solid rgba(125, 211, 252, 0.14);
  }

  .lux-sidebar-mobile-head span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

/* =========================
   LUXURY ADMIN DATA PAGE
========================= */

.lux-admin-page {
  display: grid;
  gap: 1.5rem;
}

.lux-page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.24), transparent 30%),
    linear-gradient(135deg, #071827 0%, #0f2a44 52%, #075985 100%);
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lux-page-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -130px;
  right: -90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.lux-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: luxPageShine 7s ease-in-out infinite;
}

@keyframes luxPageShine {
  0%, 70% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.lux-page-hero > * {
  position: relative;
  z-index: 2;
}

.lux-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  color: #e0f7ff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.lux-page-hero h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.lux-page-hero p {
  max-width: 680px;
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.lux-page-action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lux-panel-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lux-panel-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -80px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.06);
}

.lux-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.lux-panel-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  color: #0369a1;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.74rem;
  font-weight: 900;
}

.lux-panel-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lux-panel-head p {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lux-action-btn,
.lux-reset-link,
.lux-mini-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.lux-action-btn {
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
}

.lux-action-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.22);
}

.lux-action-outline {
  color: #075985;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 165, 233, 0.20);
}

.lux-action-soft,
.lux-reset-link {
  color: #075985;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.14);
}

.lux-action-btn:hover,
.lux-reset-link:hover,
.lux-mini-btn:hover {
  transform: translateY(-2px);
}

.lux-filter-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px auto;
  gap: 1rem;
  align-items: end;
}

.lux-filter-field {
  display: grid;
  gap: 0.45rem;
}

.lux-filter-field span {
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 900;
}

.lux-input-icon {
  position: relative;
}

.lux-input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0284c7;
  pointer-events: none;
}

.lux-input-icon input {
  padding-left: 42px;
}

.lux-filter-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lux-table-count {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  color: #075985;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.14);
  font-size: 0.86rem;
  font-weight: 900;
}

.lux-table-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: auto;
}

.lux-admin-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: separate;
  border-spacing: 0;
}

.lux-admin-table thead th {
  padding: 0.95rem 0.9rem;
  color: #64748b;
  background: rgba(248, 250, 252, 0.92);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.lux-admin-table thead th:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.lux-admin-table thead th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.lux-admin-table tbody td {
  padding: 1rem 0.9rem;
  color: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  vertical-align: middle;
}

.lux-admin-table tbody tr {
  transition: background 0.22s ease;
}

.lux-admin-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.045);
}

.lux-person-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
}

.lux-person-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-person-cell strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-person-cell span,
.lux-person-cell small {
  display: block;
  margin-top: 0.12rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-text-strong {
  color: #0f172a;
  font-weight: 800;
}

.lux-location-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  min-width: 150px;
}

.lux-location-cell i {
  color: #0284c7;
}

.lux-date-cell strong {
  display: block;
  color: #0f172a;
  font-size: 0.88rem;
}

.lux-date-cell span {
  display: block;
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-status-badge {
  display: inline-flex;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-badge-baru {
  color: #1d4ed8;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.lux-badge-dihubungi {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.lux-badge-trial {
  color: #7c3aed;
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

.lux-badge-diterima,
.lux-badge-aktif {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-badge-batal {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

.lux-inline-form {
  display: flex;
  gap: 0.65rem;
  flex-wrap: nowrap;
  align-items: center;
}

.lux-inline-form select {
  min-width: 145px;
}

.lux-mini-btn {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.lux-mini-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.18);
}

.lux-mini-success {
  color: #ffffff;
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.18);
}

.lux-mini-outline {
  color: #075985;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.14);
}

.lux-empty-state {
  display: grid;
  place-items: center;
  gap: 0.4rem;
  padding: 2.5rem 1rem;
  text-align: center;
  color: #64748b;
}

.lux-empty-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.4rem;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.10);
  font-size: 1.4rem;
}

.lux-empty-state strong {
  color: #0f172a;
  font-weight: 900;
}

.lux-empty-state p {
  margin: 0;
}

.lux-pagination-area {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .lux-filter-form {
    grid-template-columns: 1fr 220px;
  }

  .lux-filter-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .lux-page-hero {
    flex-direction: column;
    padding: 1.4rem;
    border-radius: 26px;
  }

  .lux-page-action,
  .lux-page-action .lux-action-btn {
    width: 100%;
  }

  .lux-filter-form {
    grid-template-columns: 1fr;
  }

  .lux-filter-actions,
  .lux-filter-actions .lux-action-btn {
    width: 100%;
  }

  .lux-panel-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .lux-panel-head {
    flex-direction: column;
  }

  .lux-reset-link,
  .lux-table-count {
    width: 100%;
  }
}

/* =========================
   LUXURY ADMIN STUDENTS PAGE
========================= */

.lux-student-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.lux-student-summary-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lux-student-summary-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -80px;
  right: -70px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.07);
}

.lux-student-summary-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.22);
}

.lux-student-summary-icon.is-green {
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 14px 28px rgba(5, 150, 105, 0.18);
}

.lux-student-summary-icon.is-yellow {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.18);
}

.lux-student-summary-card div:last-child {
  position: relative;
  z-index: 2;
}

.lux-student-summary-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 900;
}

.lux-student-summary-card strong {
  display: block;
  color: #0f172a;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.lux-student-table {
  min-width: 1050px;
}

.lux-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #047857;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.lux-whatsapp-link i {
  color: #22c55e;
  font-size: 1rem;
}

.lux-whatsapp-link:hover {
  color: #065f46;
  text-decoration: underline;
}

.lux-soft-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 220px;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-soft-pill i {
  flex-shrink: 0;
}

.lux-soft-pill.is-muted {
  color: #334155;
  background: rgba(148, 163, 184, 0.12);
}

.lux-student-status-aktif {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-student-status-nonaktif {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

.lux-student-status-cuti {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.lux-action-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.lux-action-row form {
  margin: 0;
}

.lux-mini-danger {
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.18);
}

.lux-mini-danger:hover {
  box-shadow: 0 14px 26px rgba(220, 38, 38, 0.24);
}

/* Responsive */
@media (max-width: 1100px) {
  .lux-student-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-student-summary-card {
    border-radius: 24px;
  }

  .lux-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .lux-action-row .lux-mini-btn,
  .lux-action-row form,
  .lux-action-row button {
    width: 100%;
  }
}

/* =========================
   LUXURY ADMIN PROGRAM PAGE
========================= */

.lux-program-table {
  min-width: 920px;
}

.lux-program-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 230px;
}

.lux-program-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-program-cell strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-program-cell span {
  display: block;
  margin-top: 0.12rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-code-pill {
  display: inline-flex;
  max-width: 210px;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  color: #334155;
  background: rgba(148, 163, 184, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-order-pill {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
  font-weight: 900;
}

.lux-program-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-program-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

@media (max-width: 768px) {
  .lux-program-table {
    min-width: 860px;
  }
}

/* =========================
   LUXURY ADMIN PACKAGE PAGE
========================= */

.lux-package-table {
  min-width: 980px;
}

.lux-package-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 230px;
}

.lux-package-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-package-cell strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-package-cell span {
  display: block;
  margin-top: 0.12rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-billing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 190px;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-billing-pill i {
  flex-shrink: 0;
}

.lux-billing-bulanan,
.lux-billing-monthly {
  color: #075985;
  background: linear-gradient(135deg, #e0f2fe, #f8fbff);
}

.lux-billing-sekali,
.lux-billing-one-time {
  color: #047857;
  background: linear-gradient(135deg, #d1fae5, #f0fdf4);
}

.lux-billing-per-sesi,
.lux-billing-session {
  color: #7c3aed;
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

.lux-price-cell {
  min-width: 150px;
}

.lux-price-cell strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-price-cell span {
  display: block;
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.lux-package-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-package-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

@media (max-width: 768px) {
  .lux-package-table {
    min-width: 900px;
  }
}

/* =========================
   LUXURY ADMIN LOCATION PAGE
========================= */

.lux-location-table {
  min-width: 960px;
}

.lux-location-main-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 230px;
}

.lux-location-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-location-main-cell strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-location-main-cell span {
  display: block;
  margin-top: 0.12rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-address-cell {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 430px;
  color: #334155;
  line-height: 1.65;
}

.lux-address-cell i {
  flex-shrink: 0;
  margin-top: 0.22rem;
  color: #0284c7;
}

.lux-address-cell span {
  display: block;
  color: #334155;
  font-size: 0.9rem;
}

.lux-location-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-location-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

@media (max-width: 768px) {
  .lux-location-table {
    min-width: 860px;
  }

  .lux-address-cell {
    max-width: 360px;
  }
}

/* =========================
   LUXURY ADMIN COACH PAGE
========================= */

.lux-coach-table {
  min-width: 860px;
}

.lux-coach-cell {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 260px;
}

.lux-coach-photo,
.lux-coach-avatar {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.lux-coach-photo {
  object-fit: cover;
  border: 3px solid #ffffff;
  background: #f8fafc;
}

.lux-coach-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  border: 3px solid #ffffff;
}

.lux-coach-cell strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.lux-coach-cell span {
  display: block;
  margin-top: 0.16rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-coach-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-coach-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

@media (max-width: 768px) {
  .lux-coach-table {
    min-width: 760px;
  }

  .lux-coach-photo,
  .lux-coach-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
}

/* =========================
   LUXURY ADMIN EDIT STUDENT FORM
========================= */

.lux-edit-summary-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lux-edit-summary-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -80px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.07);
}

.lux-edit-avatar {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.22);
}

.lux-edit-summary-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  flex: 1;
}

.lux-edit-summary-content span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.76rem;
  font-weight: 900;
}

.lux-edit-summary-content strong {
  display: block;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lux-edit-summary-content p {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
}

.lux-edit-summary-status {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.lux-admin-form {
  position: relative;
  z-index: 2;
}

.lux-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lux-form-field {
  display: grid;
  gap: 0.45rem;
}

.lux-form-field-full {
  grid-column: 1 / -1;
}

.lux-form-field span {
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 900;
}

.lux-form-field input,
.lux-form-field select,
.lux-form-field textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  background: #ffffff;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.94rem;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.lux-form-field textarea {
  resize: vertical;
  line-height: 1.65;
}

.lux-form-field input:focus,
.lux-form-field select:focus,
.lux-form-field textarea:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.75);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  background: #ffffff;
}

.lux-form-field .lux-input-icon input {
  padding-left: 2.7rem;
}

.lux-form-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

/* Responsive */
@media (max-width: 768px) {
  .lux-edit-summary-card {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .lux-edit-summary-status {
    width: 100%;
  }

  .lux-form-grid {
    grid-template-columns: 1fr;
  }

  .lux-form-actions,
  .lux-form-actions .lux-action-btn {
    width: 100%;
  }
}

/* =========================
   LUXURY ADMIN PROGRAM FORM
========================= */

.lux-program-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

.lux-side-info-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.24), transparent 32%),
    linear-gradient(135deg, #071827 0%, #0f2a44 52%, #075985 100%);
  box-shadow:
    0 24px 58px rgba(2, 6, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lux-side-info-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -90px;
  right: -80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.lux-side-info-card > * {
  position: relative;
  z-index: 2;
}

.lux-side-info-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.25rem;
}

.lux-side-info-card h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lux-side-info-list {
  display: grid;
  gap: 1rem;
}

.lux-side-info-list div {
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.lux-side-info-list strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
}

.lux-side-info-list p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.6;
}

.lux-form-switch-field {
  align-content: start;
}

.lux-switch-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.lux-switch-row strong {
  display: block;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 900;
}

.lux-switch-row small {
  display: block;
  margin-top: 0.1rem;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.4;
}

.lux-switch {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 32px;
  flex-shrink: 0;
}

.lux-switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.lux-switch-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.25s ease;
}

.lux-switch-slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease;
}

.lux-switch input:checked + .lux-switch-slider {
  background: linear-gradient(135deg, #22d3ee, #0284c7);
}

.lux-switch input:checked + .lux-switch-slider::before {
  transform: translateX(24px);
}

/* Responsive */
@media (max-width: 1100px) {
  .lux-program-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-side-info-card {
    border-radius: 24px;
  }

  .lux-switch-row {
    align-items: flex-start;
  }
}

/* =========================
   LUXURY ADMIN EDIT PROGRAM
========================= */

.lux-edit-avatar i {
  font-size: 1.45rem;
}

.lux-program-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-program-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

/* =========================
   LUXURY ADMIN PACKAGE FORM
========================= */

.lux-package-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .lux-package-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LUXURY ADMIN EDIT PACKAGE
========================= */

.lux-edit-avatar i {
  font-size: 1.45rem;
}

.lux-package-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-package-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

/* =========================
   LUXURY ADMIN LOCATION FORM
========================= */

.lux-location-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

.lux-error-alert {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  color: #991b1b;
  background:
    linear-gradient(135deg, #fee2e2, #fff1f2);
  border: 1px solid #fecaca;
  box-shadow:
    0 18px 42px rgba(220, 38, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.lux-error-alert-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.18);
}

.lux-error-alert strong {
  display: block;
  color: #7f1d1d;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.lux-error-alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.lux-error-alert li {
  margin: 0.18rem 0;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .lux-location-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-error-alert {
    border-radius: 18px;
  }
}

/* =========================
   LUXURY ADMIN EDIT LOCATION
========================= */

.lux-edit-avatar i {
  font-size: 1.45rem;
}

.lux-location-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-location-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

/* =========================
   LUXURY ADMIN COACH FORM
========================= */

.lux-coach-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

.lux-file-upload {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.86);
  border: 1px dashed rgba(14, 165, 233, 0.32);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.lux-file-upload:hover {
  background: rgba(240, 249, 255, 0.92);
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.08);
}

.lux-file-upload-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-file-upload-content {
  flex: 1;
  min-width: 0;
}

.lux-file-upload-content strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 900;
}

.lux-file-upload-content p {
  margin: 0.25rem 0 0.75rem;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.55;
}

.lux-file-upload input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dbe4ee;
  color: #334155;
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .lux-coach-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-file-upload {
    flex-direction: column;
    border-radius: 20px;
  }
}

/* =========================
   LUXURY ADMIN EDIT COACH
========================= */

.lux-edit-photo-avatar {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 24px;
  object-fit: cover;
  background: #f8fafc;
  border: 3px solid #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.lux-current-photo-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.lux-current-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 24px;
  object-fit: cover;
  background: #f8fafc;
  border: 3px solid #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.lux-current-photo-placeholder {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  background: rgba(14, 165, 233, 0.10);
  font-size: 1.6rem;
  border: 1px dashed rgba(14, 165, 233, 0.35);
}

.lux-current-photo-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 900;
}

.lux-current-photo-card p {
  margin: 0.3rem 0 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.6;
}

.lux-coach-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-coach-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

@media (max-width: 768px) {
  .lux-current-photo-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .lux-current-photo,
  .lux-current-photo-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }
}

/* =========================
   LUXURY ADMIN BILL PAGE
========================= */

.lux-bill-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.lux-bill-generate-form,
.lux-bill-filter-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
}

.lux-bill-generate-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.lux-bill-generate-form .lux-action-btn {
  min-height: 48px;
}

.lux-bill-filter-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.lux-bill-filter-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lux-bill-table {
  min-width: 1180px;
}

.lux-period-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-money-cell {
  min-width: 130px;
}

.lux-money-cell strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-money-cell span {
  display: block;
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
}

.lux-money-cell.is-discount strong {
  color: #d97706;
}

.lux-money-cell.is-total strong {
  color: #047857;
}

.lux-bill-status-belum-bayar {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.lux-bill-status-cicilan {
  color: #1d4ed8;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.lux-bill-status-lunas {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-bill-status-lewat-jatuh-tempo {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

.lux-bill-status-batal {
  color: #475569;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

/* Responsive */
@media (max-width: 1200px) {
  .lux-bill-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .lux-bill-generate-form,
  .lux-bill-filter-form {
    grid-template-columns: 1fr;
  }

  .lux-bill-filter-actions,
  .lux-bill-filter-actions .lux-action-btn {
    width: 100%;
  }

  .lux-bill-generate-form .lux-action-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .lux-bill-table {
    min-width: 1080px;
  }
}

/* =========================
   LUXURY ADMIN BILL FORM
========================= */

.lux-bill-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .lux-bill-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LUXURY ADMIN EDIT BILL
========================= */

.lux-edit-avatar i {
  font-size: 1.45rem;
}

.lux-bill-total-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.22), transparent 32%),
    linear-gradient(135deg, #071827 0%, #0f2a44 52%, #075985 100%);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lux-bill-total-preview small {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.lux-bill-total-preview strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.lux-bill-total-preview i {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
}

.lux-bill-status-belum-bayar {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.lux-bill-status-cicilan {
  color: #1d4ed8;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.lux-bill-status-lunas {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-bill-status-lewat-jatuh-tempo {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

.lux-bill-status-batal {
  color: #475569;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

/* =========================
   LUXURY ADMIN PAYMENT PAGE
========================= */

.lux-payment-table {
  min-width: 1180px;
}

.lux-payment-method {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 170px;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  color: #075985;
  background: rgba(14, 165, 233, 0.10);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-payment-method i {
  flex-shrink: 0;
}

.lux-method-cash {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-method-transfer {
  color: #075985;
  background: linear-gradient(135deg, #e0f2fe, #f8fbff);
}

.lux-method-qris {
  color: #7c3aed;
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

.lux-method-ewallet,
.lux-method-e-wallet {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.lux-muted-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  color: #64748b;
  background: rgba(148, 163, 184, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-receiver-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  min-width: 150px;
  font-weight: 800;
}

.lux-receiver-cell i {
  color: #0284c7;
}

@media (max-width: 768px) {
  .lux-payment-table {
    min-width: 1080px;
  }
}

/* =========================
   LUXURY ADMIN PAYMENT FORM
========================= */

.lux-payment-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .lux-payment-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LUXURY ADMIN TESTIMONIAL PAGE
========================= */

.lux-testimonial-table {
  min-width: 1180px;
}

.lux-testimonial-text {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 360px;
  color: #334155;
  line-height: 1.65;
}

.lux-testimonial-text i {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: #0284c7;
}

.lux-testimonial-text span {
  display: block;
  font-size: 0.9rem;
}

.lux-rating-cell {
  display: grid;
  gap: 0.25rem;
  min-width: 110px;
}

.lux-rating-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lux-rating-cell span {
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 900;
}

.lux-testimonial-status-approved {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-testimonial-status-pending {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.lux-testimonial-status-hidden {
  color: #334155;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.lux-testimonial-status-rejected {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

.lux-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  color: #64748b;
  background: rgba(148, 163, 184, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.lux-featured-badge.is-featured {
  color: #1d4ed8;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.lux-featured-badge i {
  color: currentColor;
}

.lux-moderation-form {
  min-width: 250px;
}

.lux-moderation-form select {
  min-width: 145px;
}

@media (max-width: 768px) {
  .lux-testimonial-table {
    min-width: 1080px;
  }

  .lux-testimonial-text {
    max-width: 300px;
  }
}

/* =========================
   LUXURY ADMIN TESTIMONIAL FORM
========================= */

.lux-testimonial-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

.lux-form-help {
  display: block;
  margin-top: 0.1rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.lux-testimonial-preview-card {
  position: relative;
  overflow: hidden;
  margin-top: 1.25rem;
  padding: 1.2rem;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.24), transparent 32%),
    linear-gradient(135deg, #071827 0%, #0f2a44 52%, #075985 100%);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lux-testimonial-preview-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.lux-testimonial-preview-card > * {
  position: relative;
  z-index: 2;
}

.lux-testimonial-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.lux-testimonial-preview-head span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.lux-testimonial-preview-head strong {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.lux-testimonial-preview-head i {
  color: #67e8f9;
  font-size: 1.4rem;
}

.lux-testimonial-preview-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.lux-testimonial-preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .lux-testimonial-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-testimonial-preview-card {
    border-radius: 20px;
  }
}

/* =========================
   LUXURY ADMIN EDIT TESTIMONIAL
========================= */

.lux-testimonial-status-approved {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-testimonial-status-pending {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
}

.lux-testimonial-status-hidden {
  color: #334155;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.lux-testimonial-status-rejected {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

/* =========================
   LUXURY ADMIN FAQ PAGE
========================= */

.lux-faq-table {
  min-width: 860px;
}

.lux-faq-question-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 420px;
}

.lux-faq-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #0284c7, #075985);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18);
}

.lux-faq-question-cell strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
  line-height: 1.5;
}

.lux-faq-question-cell span {
  display: block;
  margin-top: 0.16rem;
  color: #64748b;
  font-size: 0.78rem;
}

.lux-faq-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-faq-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

@media (max-width: 768px) {
  .lux-faq-table {
    min-width: 760px;
  }

  .lux-faq-question-cell {
    min-width: 340px;
  }
}

/* =========================
   LUXURY ADMIN FAQ FORM
========================= */

.lux-faq-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

.lux-faq-preview-card {
  position: relative;
  overflow: hidden;
  margin-top: 1.25rem;
  padding: 1.2rem;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.24), transparent 32%),
    linear-gradient(135deg, #071827 0%, #0f2a44 52%, #075985 100%);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lux-faq-preview-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -90px;
  right: -80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.lux-faq-preview-card > * {
  position: relative;
  z-index: 2;
}

.lux-faq-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.lux-faq-preview-head span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.lux-faq-preview-head strong {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.lux-faq-preview-head i {
  color: #67e8f9;
  font-size: 1.45rem;
}

.lux-faq-preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .lux-faq-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lux-faq-preview-card {
    border-radius: 20px;
  }
}

/* =========================
   LUXURY ADMIN EDIT FAQ
========================= */

.lux-edit-avatar i {
  font-size: 1.45rem;
}

.lux-faq-status-active {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lux-faq-status-inactive {
  color: #991b1b;
  background: linear-gradient(135deg, #fee2e2, #fff1f2);
}

/* =========================
   LUXURY ADMIN SETTINGS PAGE
========================= */

.lux-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.lux-settings-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lux-settings-save-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.26), transparent 32%),
    linear-gradient(135deg, #071827 0%, #0f2a44 52%, #075985 100%);
  box-shadow:
    0 24px 58px rgba(2, 6, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lux-settings-save-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -110px;
  right: -90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.lux-settings-save-card > * {
  position: relative;
  z-index: 2;
}

.lux-settings-save-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.35rem;
}

.lux-settings-save-content {
  flex: 1;
  min-width: 0;
}

.lux-settings-save-content span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lux-settings-save-content strong {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 900;
}

.lux-settings-save-content p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.lux-settings-save-action {
  flex-shrink: 0;
}

.lux-settings-save-action .lux-action-btn {
  background: linear-gradient(135deg, #22d3ee, #0284c7);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.30);
}

/* Responsive */
@media (max-width: 1200px) {
  .lux-settings-grid {
    grid-template-columns: 1fr;
  }
}

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

  .lux-settings-save-card {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .lux-settings-save-action,
  .lux-settings-save-action .lux-action-btn {
    width: 100%;
  }
}