/* ======================================================
   ROOT
====================================================== */
:root {
  --primary: #0ea5a4;
  --primary-dark: #0f766e;
  --secondary: #14b8a6;
  --bg: #f1f5f9;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --shadow: 0 12px 40px rgba(15, 23, 42, .08);
  --radius: 24px;
}

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

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.queue-page {
  background: var(--bg);
}

/* ======================================================
   HERO
====================================================== */
.queue-hero {
  min-height: 75vh;
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.92), rgba(15, 118, 110, 0.92)), url("../img/queue-banner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.queue-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.queue-hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -150px;
  left: -80px;
}

.hero-content {
  max-width: 900px;
  padding: 0 30px;
  z-index: 2;
}

.page-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.queue-hero h1 {
  font-size: 64px;
  margin: 25px 0;
  font-weight: 800;
  line-height: 1.1;
}

.queue-hero p {
  font-size: 20px;
  line-height: 1.9;
  opacity: 0.95;
}

/* ======================================================
   SECTION
====================================================== */
.queue-summary-section,
.queue-section,
.queue-info-section,
.queue-cta {
  max-width: 1400px;
  margin: auto;
  padding: 90px 50px;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--text);
  position: relative;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 5px;
  border-radius: 20px;
  background: var(--primary);
  display: block;
  margin: 15px auto 0;
}

/* ======================================================
   SUMMARY
====================================================== */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.summary-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.summary-card:hover {
  transform: translateY(-8px);
}

.summary-card h3 {
  color: var(--muted);
  margin-bottom: 15px;
}

.summary-card span {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.summary-card p {
  color: var(--muted);
}

/* ======================================================
   QUEUE CARD
====================================================== */
.queue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.queue-card,
.pharmacy-card,
.service-card,
.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.queue-card:hover,
.pharmacy-card:hover,
.service-card:hover,
.info-card:hover {
  transform: translateY(-8px);
}

.queue-card h3,
.pharmacy-card h3,
.service-card h3 {
  margin-bottom: 20px;
  color: var(--text);
}

.queue-number {
  font-size: 54px;
  font-weight: 900;
  color: var(--primary);
  margin: 15px 0;
  letter-spacing: 2px;
}

.queue-card p,
.pharmacy-card p,
.service-card p {
  color: var(--muted);
}

/* ======================================================
   PHARMACY
====================================================== */
.bg-light {
  background: #f8fafc;
}

.pharmacy-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ======================================================
   SERVICE
====================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ======================================================
   INFO
====================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  text-align: center;
}

.info-card .icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: 25px;
}

.info-card h3 {
  margin-bottom: 15px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* ======================================================
   CTA
====================================================== */
.queue-cta {
  text-align: center;
}

.queue-cta h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.queue-cta p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 35px;
}

.queue-cta a {
  display: inline-block;
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 60px;
  transition: 0.3s;
  box-shadow: 0 15px 35px rgba(14, 165, 164, 0.25);
}

.queue-cta a:hover {
  transform: translateY(-4px);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1200px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .queue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .summary-grid,
  .queue-grid,
  .service-grid,
  .pharmacy-wrapper,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .queue-summary-section,
  .queue-section,
  .queue-info-section,
  .queue-cta {
    padding: 70px 25px;
  }
  .queue-hero h1 {
    font-size: 38px;
  }
  .queue-hero p {
    font-size: 16px;
  }
  .section-title {
    font-size: 30px;
  }
  .queue-number {
    font-size: 42px;
  }
  .queue-cta h2 {
    font-size: 32px;
  }
}
/* ======================================================
   DISPLAY FARMASI
====================================================== */
.farmasi-display {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  align-items: stretch;
}

.farmasi-current {
  background: white;
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.farmasi-label {
  font-size: 20px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 2px;
}

.farmasi-number {
  font-size: 120px;
  font-weight: 900;
  color: #0ea5a4;
  line-height: 1;
  margin: 20px 0;
  animation: pulseNumber 2s infinite;
}

.farmasi-patient {
  background: #991b1b;
  color: white;
  padding: 18px;
  border-radius: 15px;
  font-size: 28px;
  font-weight: 700;
  margin-top: 20px;
}

.farmasi-status {
  margin-top: 25px;
  color: #16a34a;
  font-weight: 700;
  font-size: 18px;
}

/* ======================================================
   HISTORY
====================================================== */
.farmasi-history {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.history-header {
  background: #0f766e;
  color: white;
  padding: 22px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.farmasi-history table {
  width: 100%;
  border-collapse: collapse;
}

.farmasi-history th {
  background: #14b8a6;
  color: white;
  padding: 18px;
}

.farmasi-history td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.farmasi-history tr:hover {
  background: #f8fafc;
}

/* ======================================================
   ANIMATION
====================================================== */
@keyframes pulseNumber {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* ======================================================
   RESPONSIVE FARMASI DISPLAY
====================================================== */
@media (max-width: 1200px) {
  .farmasi-display {
    grid-template-columns: 1fr;
  }
  .farmasi-number {
    font-size: 90px;
  }
  .farmasi-patient {
    font-size: 24px;
  }
}
/* TABLET */
@media (max-width: 992px) {
  .farmasi-current {
    padding: 40px 25px;
  }
  .farmasi-number {
    font-size: 72px;
  }
  .farmasi-label {
    font-size: 18px;
  }
  .farmasi-patient {
    font-size: 20px;
    padding: 15px;
  }
  .farmasi-status {
    font-size: 16px;
  }
  .history-header {
    font-size: 20px;
  }
  .farmasi-history th,
  .farmasi-history td {
    padding: 14px;
    font-size: 14px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .farmasi-display {
    gap: 20px;
  }
  .farmasi-current {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .farmasi-history {
    border-radius: 20px;
  }
  .farmasi-label {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .farmasi-number {
    font-size: 56px;
    margin: 15px 0;
    word-break: break-word;
  }
  .farmasi-patient {
    font-size: 18px;
    line-height: 1.5;
    padding: 12px;
  }
  .farmasi-status {
    font-size: 14px;
  }
  .history-header {
    font-size: 18px;
    padding: 15px;
  }
  .farmasi-history {
    overflow-x: auto;
  }
  .farmasi-history table {
    min-width: 500px;
  }
  .farmasi-history th,
  .farmasi-history td {
    padding: 12px;
    font-size: 13px;
  }
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table-responsive table {
  width: 100%;
  min-width: 500px;
}

/* MOBILE KECIL */
@media (max-width: 480px) {
  .farmasi-current {
    padding: 25px 15px;
  }
  .farmasi-label {
    font-size: 14px;
  }
  .farmasi-number {
    font-size: 42px;
  }
  .farmasi-patient {
    font-size: 15px;
    border-radius: 10px;
  }
  .farmasi-status {
    font-size: 13px;
  }
  .history-header {
    font-size: 16px;
  }
  .farmasi-history th,
  .farmasi-history td {
    font-size: 12px;
    padding: 10px;
  }
}/*# sourceMappingURL=antrean.css.map */