/* ============================================================
   RSU Islam Purwokerto – Master Stylesheet
   Converted from Next.js modules to a single production CSS
   ============================================================ */

/* ── 1. Google Font ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── 2. CSS Variables ──────────────────────────────────────── */
:root {
  /* Greens */
  --green-primary: #0f766e;
  --green-medium: #14b8a6;
  --green-light: #f0fdfa;
  --green-accent: #059669;

  /* Blues */
  --blue-primary: #1d4ed8;
  --blue-medium: #3b82f6;
  --blue-light: #eff6ff;

  /* Greys */
  --grey-dark: #1f2937;
  --grey-medium: #4b5563;
  --grey-light: #9ca3af;
  --grey-bg-1: #f9fafb;
  --grey-bg-2: #f3f4f6;
  --grey-bg-3: #e5e7eb;

  /* Neutrals */
  --white: #ffffff;
  --black: #0f172a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, rgba(255,255,255,0.18) 100%);
  --gradient-blue: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, rgba(255,255,255,0.18) 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
  --gradient-brand: linear-gradient(135deg, #b5a642 0%, #5bbcd6 100%);

  /* Muhammadiyah tile pattern */
  --tile-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23c5ddf0' stroke-width='0.5'%3E%3Cpath d='M30 5L40 15L30 25L20 15Z'/%3E%3Cpath d='M30 35L40 45L30 55L20 45Z'/%3E%3Cpath d='M5 30L15 20L25 30L15 40Z'/%3E%3Cpath d='M35 30L45 20L55 30L45 40Z'/%3E%3Cpath d='M30 5L30 25'/%3E%3Cpath d='M30 35L30 55'/%3E%3Cpath d='M5 30L25 30'/%3E%3Cpath d='M35 30L55 30'/%3E%3Cpath d='M30 15L40 15'/%3E%3Cpath d='M20 45L30 45'/%3E%3C/g%3E%3C/svg%3E");

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12);

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;
  --topbar-height: 40px;
  --border-radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ── 3. Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, var(--white) 0%, #f6eede 100%);
  background-attachment: fixed;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--grey-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

/* ── 4. Layout Utilities ───────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 70px 0;
}

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

.section-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1rem;
  color: var(--grey-medium);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 5. Typography Helpers ─────────────────────────────────── */
.text-teal { color: var(--green-primary); }
.text-green { color: var(--green-accent); }
.text-blue { color: var(--blue-primary); }

/* ── 6. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.45);
}

.btn-secondary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.45);
}

.btn-blue {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.45);
}

/* ── 7. Card Hover ─────────────────────────────────────────── */
.card-hover {
  transition: all var(--transition-base);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* ── 8. Grid Layouts ───────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── 9. Animations ─────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes scrollMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

/* ── 10. Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--grey-bg-2);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey-medium);
}

/* ============================================================
   HEADER
   ============================================================ */

/* Top Bar */
.topBar {
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}

.topBarContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topBarLeft {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.topBarLeft span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topBarRight {
  display: flex;
  align-items: center;
}

.topBarRight span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.divider {
  opacity: 0.4;
  margin: 0 6px;
}

/* Main Header */
.mainHeader {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-bg-3);
  transition: box-shadow var(--transition-base);
}

.mainHeader.scrolled {
  box-shadow: var(--shadow-md);
}

.navContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logoLink {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logoImg {
  height: 44px;
  width: auto;
}

/* Desktop Navigation */
.desktopNav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navLink {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.navLink:hover {
  color: var(--green-primary);
  background: var(--green-light);
}

.navLink.active {
  color: var(--green-primary);
  background: var(--green-light);
  font-weight: 700;
}

.ctaButton {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.ctaButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

/* ── Cek Antrean Dropdown ──────────────────────────────── */
.cekAntreanWrapper {
  position: relative;
  display: inline-block;
}

.cekAntreanBtn {
  cursor: pointer;
}

.cekAntreanDropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 420px;
  max-height: 70vh;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-bg-3);
  box-shadow: var(--shadow-xl);
  z-index: 500;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.cekAntreanDropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cadHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--grey-bg-2);
}

.cadHeader h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--grey-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cadClose {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--grey-medium);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cadClose:hover {
  background: var(--grey-bg-2);
  color: var(--grey-dark);
}

.cadSearch {
  padding: 12px 20px;
  position: relative;
  border-bottom: 1px solid var(--grey-bg-2);
}

.cadSearch i {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-light);
  font-size: 0.8rem;
}

.cadSearch input {
  width: 100%;
  font-family: inherit;
  font-size: 0.82rem;
  padding: 9px 12px 9px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-bg-3);
  background: var(--grey-bg-1);
  outline: none;
  transition: var(--transition-fast);
}

.cadSearch input:focus {
  border-color: var(--green-medium);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.cadDayRow {
  padding: 0 20px 10px;
  border-bottom: 1px solid var(--grey-bg-2);
}

.cadDayRow select {
  width: 100%;
  font-family: inherit;
  font-size: 0.8rem;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-bg-3);
  background: var(--grey-bg-1);
  color: var(--grey-dark);
  outline: none;
  cursor: pointer;
}

.cadDayRow select:focus {
  border-color: var(--green-medium);
}

.cadSummary {
  font-size: 0.72rem;
  color: var(--grey-medium);
  padding: 8px 20px 2px;
  font-weight: 600;
}

.cadBody {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  max-height: 50vh;
}

.cadLoading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 10px;
  color: var(--grey-medium);
  font-size: 0.85rem;
}

.cadLoading i {
  font-size: 1.5rem;
  color: var(--green-primary);
}

.cadPoliGroup {
  padding: 0 16px;
}

.cadPoliLabel {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-primary);
  padding: 10px 4px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--grey-bg-2);
}

.cadPoliCount {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.cadDoctorRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 8px;
  border-radius: 6px;
  transition: background var(--transition-fast);
}

.cadDoctorRow:hover {
  background: var(--grey-bg-1);
}

.cadDocIcon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.cadDocInfo {
  flex: 1;
  min-width: 0;
}

.cadDocName {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cadDocTime {
  font-size: 0.7rem;
  color: var(--grey-medium);
}

.cadDocDay {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green-primary);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cadEmpty {
  text-align: center;
  padding: 30px 20px;
  color: var(--grey-medium);
  font-size: 0.85rem;
}

.cadEmpty i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cadFooter {
  padding: 12px 20px;
  border-top: 1px solid var(--grey-bg-2);
  text-align: center;
}

.cadFooter a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.cadFooter a:hover {
  color: var(--green-accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.hamburgerBar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--grey-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburgerActive .hamburgerBar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburgerActive .hamburgerBar:nth-child(2) {
  opacity: 0;
}

.hamburgerActive .hamburgerBar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobileDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobileDrawer.drawerOpen {
  transform: translateX(0);
}

.drawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--grey-bg-3);
}

.drawerLogo {
  height: 36px;
  width: auto;
}

.closeBtn {
  font-size: 1.3rem;
  color: var(--grey-medium);
  padding: 4px;
  transition: color var(--transition-fast);
}

.closeBtn:hover {
  color: var(--grey-dark);
}

.mobileNav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.mobileNavLink {
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-dark);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobileNavLink:hover {
  background: var(--green-light);
  color: var(--green-primary);
  border-left-color: var(--green-primary);
}

.mobileCta {
  margin: 16px 20px 0;
  padding: 14px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-base);
}

.mobileCta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Backdrop */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.backdrop[style*="display: block"],
.backdrop.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #fdf8f0 0%, #fdf5eb 50%, #eef4fb 100%);
  color: var(--grey-dark);
  padding: 60px 0 0;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer .col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  color: var(--grey-dark);
}

.footer .col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--green-medium);
  border-radius: 2px;
}

.footerLogo {
  height: 74px;
  width: auto;
  margin-bottom: 14px;
  mix-blend-mode: multiply;
  filter: grayscale(100%) brightness(1.4);
}

.address {
  font-size: 0.85rem;
  color: var(--grey-medium);
  line-height: 1.6;
  margin-bottom: 14px;
}

.contactInfo {
  font-size: 0.85rem;
  color: var(--grey-medium);
  margin-bottom: 14px;
}

.contactInfo p {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--grey-bg-2);
  border-radius: var(--radius-sm);
  color: var(--grey-medium);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.socialLink:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer Links */
.linksList {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.linksList li a {
  display: block;
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--grey-medium);
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--grey-bg-3);
}

.linksList li a:hover {
  color: var(--green-primary);
  padding-left: 6px;
}

/* Hours */
.hours {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hourRow {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-bg-3);
}

.hourDept {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-dark);
}

.hourTime {
  font-size: 0.8rem;
  color: var(--grey-medium);
}

/* Map */
.mapContainer {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.bottomBar {
  border-top: 1px solid var(--grey-bg-3);
  padding: 20px 0;
  text-align: center;
}

.bottomBar p {
  font-size: 0.8rem;
  color: var(--grey-medium);
}

/* ============================================================
   SLIDER
   ============================================================ */
.heroContainer {
  position: relative;
}

.sliderSection {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.sliderContainer {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.contentContainer {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 60px;
}

.slideContent {
  max-width: 600px;
  animation: slideUp 0.7s ease forwards;
}

.slideContent h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slideContent p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.slideContent .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Slider Navigation Buttons */
.navButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 10;
}

.navButton:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.navButton.prev { left: 24px; }
.navButton.next { right: 24px; }

/* Indicators */
.indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
}

.indicator.active,
.indicator:hover {
  background: var(--white);
  width: 32px;
}

/* ============================================================
   HOMEPAGE – ACTIVITIES GRID
   ============================================================ */
.gallerySection {
  background: transparent;
}

.activitiesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.activityCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-bg-3);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.activityCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.activityImgWrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.activityImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.activityCard:hover .activityImg {
  transform: scale(1.08);
}

.activityDate {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.activityBody {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.categoryBadge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: fit-content;
}

.activityTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activityDesc {
  font-size: 0.82rem;
  color: var(--grey-medium);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.moreContainer {
  text-align: center;
  margin-top: 32px;
}

/* ── About Contact Grid ────────────────────────────────────── */
.aboutContactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.aboutContent {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.aboutText h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

.aboutText p {
  font-size: 0.92rem;
  color: var(--grey-medium);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Stats Grid */
.statsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.statItem {
  text-align: center;
  padding: 18px 12px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.statNum {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1.2;
}

.statLabel {
  display: block;
  font-size: 0.75rem;
  color: var(--grey-medium);
  font-weight: 600;
  margin-top: 4px;
}

/* ── Vision & Mission ──────────────────────────────────────── */
.visionMissionAbout {
  background: var(--grey-bg-1);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--grey-bg-3);
}

.visionMissionSub {
  font-size: 0.92rem;
  color: var(--grey-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.visionMissionGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.visionBox,
.missionBox {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--grey-bg-3);
}

.visionBox h4,
.missionBox h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visionBox p {
  font-size: 0.85rem;
  color: var(--grey-medium);
  line-height: 1.6;
}

.missionBox ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.missionBox li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--grey-medium);
  line-height: 1.5;
}

.missionBox li i {
  color: var(--green-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.igWrapperCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-bg-3);
}

.igProfileHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--grey-bg-3);
}

.igAvatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--grey-bg-3);
}

.igProfileInfo {
  flex: 1;
}

.igUsernameRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.igUsername {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  display: inline-flex;
  align-items: center;
}

.igFollowBtn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-primary);
  padding: 4px 14px;
  border: 1.5px solid var(--blue-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.igFollowBtn:hover {
  background: var(--blue-light);
}

.igStatsRow {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--grey-medium);
  margin-bottom: 6px;
}

.igBio {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.igBioName {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}

.igBioText {
  font-size: 0.8rem;
  color: var(--grey-medium);
}

.igBioLink {
  font-size: 0.8rem;
  color: var(--blue-primary);
  font-weight: 600;
}

/* Feed Grid */
.igFeedGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.igGridItem {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.igPostImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.igGridItem:hover .igPostImage {
  transform: scale(1.08);
}

.igOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.igGridItem:hover .igOverlay {
  opacity: 1;
}

.igOverlayContent {
  display: flex;
  gap: 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.igOverlayContent span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.igFooterLink {
  padding: 14px 20px;
  text-align: center;
  border-top: 1px solid var(--grey-bg-3);
}

.igFooterLink a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.igFooterLink a:hover {
  color: var(--green-primary);
}

/* ============================================================
   INSURANCE MARQUEE
   ============================================================ */
.insuranceSection {
  padding: 60px 0;
  background: #fdf8f0;
  overflow: hidden;
}

.insuranceHeader {
  text-align: center;
  margin-bottom: 36px;
}

.insuranceSubtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.insuranceTitle {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--grey-dark);
  margin-bottom: 8px;
}

.insuranceDesc {
  font-size: 0.9rem;
  color: var(--grey-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Marquee */
.marqueeContainer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marqueeTrack {
  display: flex;
  gap: 24px;
  animation: scrollMarquee 30s linear infinite;
  width: max-content;
}

.marqueeTrack:hover {
  animation-play-state: paused;
}

.partnerCard {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-bg-3);
  min-width: 150px;
  transition: all var(--transition-base);
}

.partnerCard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-medium);
}

.partnerLogoWrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnerLogoImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partnerName {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-dark);
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   SICEPOT BANNER
   ============================================================ */
.sicepotBanner {
  padding: 40px 0;
}

.sicepotLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: var(--gradient-blue);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: all var(--transition-base);
  gap: 20px;
}

.sicepotLink:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.3);
}

.sicepotContent {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sicepotContent > i {
  font-size: 2rem;
  flex-shrink: 0;
}

.sicepotContent h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sicepotContent p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.5;
}

.sicepotCta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.sicepotLink:hover .sicepotCta {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   FLOATING COMPONENTS – IGD
   ============================================================ */
.floatingIGD {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
  transition: all var(--transition-base);
  text-decoration: none;
}

.floatingIGD:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.55);
}

.igdIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 1rem;
}

.igdText {
  display: flex;
  flex-direction: column;
}

.igdLabel {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.igdPhone {
  font-size: 0.85rem;
  font-weight: 800;
}

/* ============================================================
   FLOATING COMPONENTS – SERVICES DRAWER
   ============================================================ */
.floatingBtnServices {
  position: fixed;
  bottom: 170px;
  right: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-base);
}

.floatingBtnServices:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.5);
}

.floatingDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.floatingDrawer.drawerOpen {
  transform: translateX(0);
}

.servicesDrawer .drawerHdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--grey-bg-3);
}

.drawerTitle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawerTitle h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.searchBar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--grey-bg-3);
  background: var(--grey-bg-1);
}

.searchBar .searchIcon {
  color: var(--grey-light);
  font-size: 0.9rem;
}

.searchBar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: var(--grey-dark);
}

.drawerBody {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.servicesList {
  display: flex;
  flex-direction: column;
}

.serviceItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  transition: background var(--transition-fast);
  border-bottom: 1px solid var(--grey-bg-2);
}

.serviceItem:hover {
  background: var(--green-light);
}

.serviceIcon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green-primary);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  flex-shrink: 0;
}

.serviceInfo {
  flex: 1;
  min-width: 0;
}

.serviceInfo h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--grey-dark);
}

.serviceInfo p {
  font-size: 0.78rem;
  color: var(--grey-medium);
}

.centerLoading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
  color: var(--grey-medium);
  font-size: 0.85rem;
}

/* ============================================================
   FLOATING COMPONENTS – HIGHLIGHTS
   ============================================================ */
.floatingBtnHighlights {
  position: fixed;
  left: 20px;
  bottom: 95px;
  z-index: 998;
  background: linear-gradient(135deg, var(--green-primary) 0%, #0369a1 100%);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 22px 10px 14px;
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.floatingBtnHighlights:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.55);
}

.floatingBtnHighlights.active {
  background: #0369a1;
  box-shadow: 0 4px 15px rgba(3, 105, 161, 0.4);
}

.hlIconWrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fbbf24;
}

.hlTextWrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hlPulseDot {
  width: 7px;
  height: 7px;
  background-color: #fbbf24;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  animation: dotPulse 1.8s infinite;
}

.hlLabel {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Highlights Popover Panel */
.hlPopover {
  position: fixed;
  left: 20px;
  bottom: 155px;
  width: 340px;
  background-color: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.hlPopover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hlPopoverHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  background-color: #fafaf9;
}

.hlPopoverTitle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hlPopoverTitle h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--grey-dark);
  margin: 0;
}

.hlCloseBtn {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: var(--grey-medium);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.hlCloseBtn:hover {
  color: var(--grey-dark);
}

.hlPopoverBody {
  max-height: 350px;
  overflow-y: auto;
  padding: 10px 0;
}

.hlLoading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  gap: 8px;
  color: var(--grey-medium);
  font-size: 0.8rem;
}

.hlItem {
  display: flex;
  gap: 12px;
  padding: 12px 18px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
  border-bottom: 1px dashed #f1f5f9;
}

.hlItem:last-child {
  border-bottom: none;
}

.hlItem:hover {
  background-color: #f8fafc;
}

.hlItemIcon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hlItemInfo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.hlItemType {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
}

.hlItemInfo h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin: 0;
  line-height: 1.3;
}

.hlItemInfo p {
  font-size: 0.75rem;
  color: var(--grey-medium);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hlPopoverFooter {
  padding: 10px 18px;
  background-color: #fafaf9;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.hlAllLink {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.hlAllLink:hover {
  color: var(--green-medium);
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.floatingBtnBackToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-base);
}

.floatingBtnBackToTop.visible,
.floatingBtnBackToTop[style*="display: block"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floatingBtnBackToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.5);
}

/* ============================================================
   BACKDROP GLOBAL (for drawers)
   ============================================================ */
.backdropGlobal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.backdropGlobal[style*="display: block"],
.backdropGlobal.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   BERITA PAGE
   ============================================================ */
.newsSection {
  padding: 60px 0;
  background: var(--grey-bg-1);
  min-height: 50vh;
}

.newsSection .activitiesGrid {
  grid-template-columns: repeat(3, 1fr);
}

.newsSection .emptyState {
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-medium);
}

.newsSection .emptyState i {
  font-size: 3rem;
  color: var(--grey-light);
  margin-bottom: 16px;
  display: block;
}

.newsSection .emptyState h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 8px;
}

/* ============================================================
   BERITA DETAIL
   ============================================================ */
.detailSection {
  padding: 40px 0 60px;
  background: var(--grey-bg-1);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-medium);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--green-primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--green-accent);
}

.breadcrumb i {
  font-size: 0.6rem;
  color: var(--grey-light);
}

.breadcrumb span {
  color: var(--grey-dark);
  font-weight: 600;
}

.gridContainer {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 36px;
  align-items: start;
}

/* Main Content */
.mainContent {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-bg-3);
}

.headerArea {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.headerArea .categoryBadge {
  align-self: flex-start;
}

.headerArea .date {
  font-size: 0.82rem;
  color: var(--grey-medium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.headerArea .title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
}

.imageWrapper {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.featuredImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.descriptionBlock {
  font-size: 0.95rem;
  color: var(--grey-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.richContent {
  font-size: 0.92rem;
  color: var(--grey-dark);
  line-height: 1.8;
}

.richContent p { margin-bottom: 12px; }
.richContent img { border-radius: var(--radius-sm); margin: 16px 0; }
.richContent h2,
.richContent h3 { margin: 20px 0 10px; font-weight: 700; }

.actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-bg-3);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widgetCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-bg-3);
}

.widgetCard h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}

.widgetCard > p {
  font-size: 0.85rem;
  color: var(--grey-medium);
  line-height: 1.6;
}

.contacts {
  margin-top: 12px;
}

.contacts p {
  font-size: 0.85rem;
  color: var(--grey-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

/* Other News */
.otherList {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.otherItem {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-bg-2);
  transition: background var(--transition-fast);
}

.otherItem:last-child {
  border-bottom: none;
}

.otherItem:hover {
  background: var(--grey-bg-1);
  border-radius: var(--radius-sm);
  padding-left: 8px;
}

.otherThumb {
  width: 72px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.otherInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.otherCat {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.otherInfo h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.otherDate {
  font-size: 0.72rem;
  color: var(--grey-light);
}

/* ============================================================
   JADWAL (SCHEDULE) PAGE
   ============================================================ */
.scheduleSection {
  padding: 60px 0;
  background: var(--grey-bg-1);
  min-height: 50vh;
}

.searchCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-bg-3);
  margin-bottom: 30px;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.formGroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.formGroup label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-dark);
}

.formGroup input,
.formGroup select {
  padding: 10px 14px;
  border: 1.5px solid var(--grey-bg-3);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--grey-dark);
  background: var(--white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.formGroup input:focus,
.formGroup select:focus {
  border-color: var(--green-medium);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

/* Status Container */
.statusContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 12px;
}

.spinner {
  font-size: 2.5rem;
  color: var(--green-primary);
  animation: spin 1s linear infinite;
}

.statusText {
  font-size: 0.9rem;
  color: var(--grey-medium);
  font-weight: 600;
}

/* Alert */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert.error {
  background: #fef2f2;
  color: #991b1b;
  border-color: rgba(239, 68, 68, 0.2);
}

.alert.success {
  background: #f0fdf4;
  color: #166534;
  border-color: rgba(34, 197, 94, 0.2);
}

.alert.loading {
  background: #eff6ff;
  color: #1e40af;
  border-color: rgba(59, 130, 246, 0.2);
}

.alertTitle {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.alertDesc {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Results Grid */
.resultsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.doctorCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-bg-3);
  transition: all var(--transition-base);
}

.doctorCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-medium);
}

.docHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 0;
}

.docIcon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--green-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.docInfo {
  flex: 1;
  min-width: 0;
}

.docInfo h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clinicBadge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

.docBody {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.timeRow .label {
  color: var(--grey-medium);
  font-weight: 600;
}

.timeVal {
  font-weight: 700;
  color: var(--green-primary);
}

.bookingCta {
  display: block;
  margin: 0 18px 18px;
  padding: 10px;
  text-align: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-base);
}

.bookingCta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Jadwal Empty */
.emptyState {
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-medium);
}

.emptyIcon {
  font-size: 3rem;
  color: var(--grey-light);
  margin-bottom: 16px;
}

.emptyState h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 8px;
}

.emptyState p {
  font-size: 0.9rem;
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================================
   LOGIN PAGE (dkw-core)
   ============================================================ */
.loginContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height) - 300px);
  padding: 60px 20px;
  background: var(--grey-bg-1);
}

.loginCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-bg-3);
  animation: cardFadeIn 0.4s ease forwards;
}

.logoArea {
  text-align: center;
  margin-bottom: 28px;
}

.loginLogo {
  height: 60px;
  width: auto;
  margin: 0 auto 12px;
}

.logoArea h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}

.logoArea p {
  font-size: 0.85rem;
  color: var(--grey-medium);
}

.loginForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loginForm .formGroup input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-bg-3);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--grey-dark);
  transition: border-color var(--transition-fast);
  outline: none;
}

.loginForm .formGroup input:focus {
  border-color: var(--green-medium);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.loginAlert {
  margin-bottom: 4px;
  font-size: 0.85rem;
}

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.adminCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-bg-3);
  animation: cardFadeIn 0.3s ease forwards;
}

.adminHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-bg-3);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.adminHeader h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.adminHeader p {
  font-size: 0.85rem;
  color: var(--grey-medium);
  margin-top: 4px;
}

.tableWrapper {
  overflow-x: auto;
  margin-top: 16px;
}

.adminTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.adminTable thead th {
  background: var(--grey-bg-1);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--grey-dark);
  border-bottom: 2px solid var(--grey-bg-3);
  white-space: nowrap;
}

.adminTable tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-bg-2);
  color: var(--grey-dark);
  vertical-align: top;
}

.adminTable tbody tr:hover {
  background: var(--grey-bg-1);
}

.msgText {
  font-size: 0.82rem;
  color: var(--grey-medium);
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.dateText {
  font-size: 0.82rem;
  color: var(--grey-light);
  white-space: nowrap;
}

/* ============================================================
   NEWS MANAGER (Admin CRUD)
   ============================================================ */
.newsManagerContainer {
  padding: 0;
}

.newsManagerContainer .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.newsManagerContainer .header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsManagerContainer .table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.newsManagerContainer .table thead th {
  background: var(--grey-bg-1);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--grey-dark);
  border-bottom: 2px solid var(--grey-bg-3);
}

.newsManagerContainer .table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-bg-2);
  vertical-align: middle;
}

.newsManagerContainer .table tbody tr:hover {
  background: var(--grey-bg-1);
}

.tableThumb {
  width: 64px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.itemTitle {
  font-weight: 700;
  color: var(--grey-dark);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badgeGreen {
  background: var(--green-light);
  color: var(--green-primary);
}

.badgeBlue {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.actionGroup {
  display: flex;
  gap: 8px;
}

.editBtn {
  padding: 6px 12px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.editBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.deleteBtn {
  padding: 6px 12px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.deleteBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.emptyState {
  text-align: center;
  padding: 50px 20px;
  color: var(--grey-medium);
}

.loadingCenter {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--grey-medium);
  gap: 10px;
  font-size: 0.9rem;
}

/* News Manager Modal */
.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modalContent {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-bg-3);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modalHeader h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.closeModalBtn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--grey-bg-2);
  color: var(--grey-medium);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.closeModalBtn:hover {
  background: #dc2626;
  color: var(--white);
}

.form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form .formGroup label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 4px;
  display: block;
}

.form .formGroup input,
.form .formGroup select,
.form .formGroup textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--grey-bg-3);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--grey-dark);
  outline: none;
  transition: border-color var(--transition-fast);
  background: var(--white);
}

.form .formGroup input:focus,
.form .formGroup select:focus,
.form .formGroup textarea:focus {
  border-color: var(--green-medium);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.form .formGroup textarea {
  min-height: 120px;
  resize: vertical;
}

/* Stock Photos */
.stockPhotos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.stockPhotos img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.stockPhotos img:hover {
  border-color: var(--green-medium);
  transform: scale(1.03);
}

.stockChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.stockChip {
  padding: 6px 14px;
  background: var(--grey-bg-2);
  color: var(--grey-dark);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1.5px solid transparent;
}

.stockChip:hover,
.stockChip.active {
  background: var(--green-light);
  color: var(--green-primary);
  border-color: var(--green-primary);
}

.modalFooter {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--grey-bg-3);
  position: sticky;
  bottom: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ============================================================
   RESPONSIVE – TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutContactGrid {
    grid-template-columns: 1fr;
  }

  .gridContainer {
    grid-template-columns: 1fr;
  }

  .visionMissionGrid {
    grid-template-columns: 1fr;
  }

  .sicepotLink {
    flex-direction: column;
    text-align: center;
  }

  .sicepotContent {
    flex-direction: column;
    text-align: center;
  }

  .resultsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsSection .activitiesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header */
  .topBar {
    display: none;
  }

  .desktopNav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navContainer {
    height: 60px;
  }

  .logoImg {
    height: 38px;
  }

  /* Slider */
  .sliderSection {
    height: 420px;
  }

  .contentContainer {
    padding: 0 24px;
  }

  .slideContent h1 {
    font-size: 1.6rem;
  }

  .slideContent p {
    font-size: 0.9rem;
  }

  .navButton {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .navButton.prev { left: 12px; }
  .navButton.next { right: 12px; }

  /* Activities Grid */
  .activitiesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .activityImgWrapper {
    height: 150px;
  }

  /* Stats */
  .statsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .statNum {
    font-size: 1.2rem;
  }

  /* Form Grid */
  .formGrid {
    grid-template-columns: 1fr;
  }

  .resultsGrid {
    grid-template-columns: 1fr;
  }

  /* News Section */
  .newsSection .activitiesGrid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Sicepot */
  .sicepotContent > i {
    font-size: 1.5rem;
  }

  /* Admin */
  .formRow {
    grid-template-columns: 1fr;
  }

  /* Insurance */
  .insuranceTitle {
    font-size: 1.3rem;
  }

  .partnerCard {
    min-width: 130px;
    padding: 14px 18px;
  }

  /* Floating buttons – adjust for mobile */
  .floatingIGD {
    bottom: 78px;
    right: 12px;
    left: auto;
    padding: 10px 14px;
    gap: 8px;
  }

  .igdIcon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .igdLabel {
    font-size: 0.6rem;
  }

  .igdPhone {
    font-size: 0.78rem;
  }

  .floatingBtnServices {
    bottom: 140px;
    right: 12px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .floatingBtnHighlights {
    left: 12px;
    bottom: 90px;
    padding: 8px 16px 8px 10px;
    font-size: 0.78rem;
  }

  .hlPopover {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 145px;
  }

  .floatingBtnBackToTop {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max-width: 580px)
   ============================================================ */
@media (max-width: 580px) {
  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.88rem;
  }

  .sliderSection {
    height: 360px;
  }

  .slideContent h1 {
    font-size: 1.35rem;
  }

  .activitiesGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .activityImgWrapper {
    height: 180px;
  }

  .footerGrid {
    grid-template-columns: 1fr;
  }

  .statsGrid {
    grid-template-columns: 1fr;
  }

  .visionMissionAbout {
    padding: 20px;
  }

  .loginCard {
    padding: 28px 20px;
  }

  .mainContent {
    padding: 20px;
  }

  .headerArea .title {
    font-size: 1.3rem;
  }

  .igProfileHeader {
    flex-direction: column;
    text-align: center;
  }

  .igStatsRow {
    justify-content: center;
  }

  .igUsernameRow {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stockPhotos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   CEK IN BPJS CARD & MODAL
   ============================================================ */
.checkinCard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.checkinCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.checkinIcon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.checkinInfo {
  flex: 1;
  min-width: 0;
}

.checkinInfo h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.checkinInfo p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.checkinArrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.checkinCard:hover .checkinArrow {
  transform: translateX(4px);
}

/* Modal */
.checkinModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.checkinModal {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: cardFadeIn 0.3s ease forwards;
  overflow: hidden;
}

.checkinModalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--grey-bg-2);
  color: var(--grey-medium);
  font-size: 1rem;
  transition: all var(--transition-fast);
  z-index: 1;
}

.checkinModalClose:hover {
  background: #dc2626;
  color: #fff;
}

.checkinModalHeader {
  text-align: center;
  padding: 32px 28px 20px;
  background: var(--gradient-primary);
  color: #fff;
}

.checkinModalIcon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

.checkinModalHeader h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.checkinModalHeader p {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
}

.checkinModalBody {
  padding: 24px 28px 28px;
}

.checkinFormGroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.checkinFormGroup label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-dark);
}

.checkinInput {
  padding: 12px 14px;
  border: 1.5px solid var(--grey-bg-3);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--grey-dark);
  outline: none;
  transition: border-color var(--transition-fast);
  text-align: center;
  letter-spacing: 0.5px;
}

.checkinInput:focus {
  border-color: var(--green-medium);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.checkinHint {
  font-size: 0.75rem;
  color: var(--grey-light);
  line-height: 1.4;
}

.checkinSubmitBtn {
  width: 100%;
  padding: 14px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkinSubmitBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

.checkinSubmitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#checkinResult {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

#checkinResult.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

#checkinResult.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 480px) {
  .checkinModalHeader {
    padding: 24px 20px 16px;
  }
  .checkinModalBody {
    padding: 20px;
  }
  .checkinModalIcon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .checkinModalHeader h3 {
    font-size: 1rem;
  }
}
