:root {
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  --primary-color: #2F5597;
  --primary-dark: #1e3a5f;
  --primary-gradient: linear-gradient(135deg, #2F5597 0%, #1e3a5f 100%);
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  min-height: 100vh;
}

.p-component {
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c1c1c1 0%, #a8a8a8 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #a1a1a1 0%, #888888 100%);
}

/* Card enhancements */
.p-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px !important;
}

.p-card .p-card-body {
  padding: 1.5rem;
}

.p-card .p-card-content {
  padding: 0;
}

/* DataTable modern styling */
.p-datatable {
  border-radius: 12px;
  overflow: hidden;
}

.p-datatable .p-datatable-header {
  background: white;
  border: none;
  padding: 1rem 1.5rem;
}

.p-datatable .p-datatable-thead > tr > th {
  background: #F9FAFB;
  color: #374151;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid #E5E7EB;
  border-top: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.p-datatable .p-datatable-tbody > tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid #F3F4F6;
}

.p-datatable .p-datatable-tbody > tr:hover {
  background: #F9FAFB;
  transform: scale(1.001);
}

.p-datatable .p-datatable-tbody > tr > td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  border: none;
}

.p-datatable .p-datatable-tbody > tr:last-child {
  border-bottom: none;
}

/* DataTable responsive */
.p-datatable-wrapper {
  overflow-x: auto;
  border-radius: 12px;
}

/* Paginator styling */
.p-paginator {
  background: white;
  border: none;
  border-top: 1px solid #E5E7EB;
  padding: 1rem 1.5rem;
}

.p-paginator .p-paginator-page,
.p-paginator .p-paginator-prev,
.p-paginator .p-paginator-next {
  min-width: 2rem;
  height: 2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.p-paginator .p-paginator-page.p-highlight {
  background: #2F5597;
  border-color: #2F5597;
}

@media screen and (max-width: 768px) {
  .p-datatable .p-datatable-thead > tr > th {
    padding: 0.75rem;
    font-size: 0.75rem;
  }
  
  .p-datatable .p-datatable-tbody > tr > td {
    padding: 0.75rem;
    font-size: 0.75rem;
  }
  
  .p-paginator {
    padding: 0.75rem 1rem;
  }
}

/* Button modern styling */
.p-button {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  border-radius: 10px;
  padding: 0.65rem 1.25rem !important;
  font-size: 1rem !important;
}

.p-button .p-button-label {
  font-size: 1rem !important;
}

.p-button .p-button-icon {
  font-size: 1rem !important;
}

.p-button.p-button-rounded {
  border-radius: 50%;
  padding: 0 !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.p-button.p-button-rounded .p-button-icon {
  font-size: 1rem !important;
}

.p-button:not(.p-button-outlined):hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.p-button.p-button-outlined:hover:not(:disabled) {
  transform: translateY(-1px);
}

.p-button:active:not(:disabled) {
  transform: translateY(0);
}

/* Tag modern styling */
.p-tag {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 576px) {
  .p-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Smooth animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in {
  animation: fadeIn 0.4s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.3s ease-out;
}

/* Badge positioning */
.p-overlay-badge {
  position: relative;
}

.p-overlay-badge .p-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  min-width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Menu dropdown styling */
.p-menu {
  border-radius: 12px !important;
  border: 1px solid #E5E7EB !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  padding: 0.5rem !important;
}

.p-menu .p-menuitem {
  margin-bottom: 0.25rem;
}

.p-menu .p-menuitem:last-child {
  margin-bottom: 0;
}

.p-menu .p-menuitem-link {
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
}

.p-menu .p-menuitem-link:hover {
  background: #F3F4F6 !important;
  transform: translateX(2px);
}

.p-menu .p-menuitem-link .p-menuitem-icon {
  font-size: 1rem !important;
  margin-right: 0.75rem !important;
  color: #6B7280 !important;
}

.p-menu .p-menuitem-link .p-menuitem-text {
  color: #374151 !important;
  font-weight: 500 !important;
}

.p-menu .p-menuitem-link.text-red-500 .p-menuitem-icon,
.p-menu .p-menuitem-link.text-red-500 .p-menuitem-text {
  color: #EF4444 !important;
}

.p-menu .p-menuitem-link.text-red-500:hover {
  background: #FEE2E2 !important;
}

.p-menu .p-menuitem-separator {
  border-top: 1px solid #E5E7EB !important;
  margin: 0.5rem 0 !important;
}

/* Divider styling for sidebar */
.p-divider {
  border-color: #E5E7EB !important;
}

.p-divider.p-divider-horizontal {
  margin: 0 !important;
  padding: 0 !important;
}

.p-divider.p-divider-horizontal:before {
  border-top-color: #E5E7EB !important;
  border-top-width: 1px !important;
}

/* Password input styling */
.p-password {
  width: 100%;
}

.p-password .p-inputwrapper,
.p-password .p-input-icon-right {
  width: 100%;
}

.p-password .p-password-input {
  width: 100%;
}

.p-password .p-icon {
  color: #9CA3AF !important;
  font-size: 1rem !important;
}

.p-password-panel {
  display: none !important;
}

/* IconField styling - Critical fixes */
.p-icon-field {
  width: 100% !important;
  position: relative !important;
  display: block !important;
}

.p-icon-field-left .p-input-icon {
  position: absolute !important;
  top: 50% !important;
  margin-top: -0.5rem !important;
  left: 1rem !important;
  color: #9CA3AF !important;
  font-size: 1.125rem !important;
}

.p-icon-field-left .p-inputtext,
.p-icon-field-left input.p-inputtext {
  padding-left: 3rem !important;
}

.p-icon-field-left .p-password,
.p-icon-field-left .p-password .p-password-input {
  width: 100% !important;
}

.p-icon-field-left .p-password input {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.p-icon-field-right .p-input-icon {
  position: absolute !important;
  top: 50% !important;
  margin-top: -0.5rem !important;
  right: 1rem !important;
  color: #9CA3AF !important;
  font-size: 1.125rem !important;
}

.p-icon-field-right .p-inputtext,
.p-icon-field-right input.p-inputtext {
  padding-right: 3rem !important;
}

/* Chart enhancements */
.p-chart canvas {
  max-width: 100%;
  height: auto !important;
}

/* Skeleton improvements */
.p-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Card responsive padding */
@media screen and (max-width: 576px) {
  .p-card .p-card-body {
    padding: 1rem !important;
  }
}

/* Grid spacing optimization */
@media screen and (max-width: 768px) {
  .grid {
    margin: -0.5rem;
  }
  
  .grid > [class*="col"] {
    padding: 0.5rem;
  }
}

/* Avatar modern styling */
.p-avatar {
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .p-avatar {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 0.875rem !important;
  }
}

/* Tooltip enhancement */
.p-tooltip .p-tooltip-text {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Focus styles */
.p-component:focus {
  outline: 2px solid #2F5597;
  outline-offset: 2px;
}

/* Selection styling */
::selection {
  background: #2F5597;
  color: white;
}

/* Improved transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-duration-200 {
  transition-duration: 200ms;
}

.transition-duration-300 {
  transition-duration: 300ms;
}

/* ===== CONFIRM DIALOG ENHANCEMENTS ===== */
.p-confirm-dialog .p-dialog-header {
  padding: 1.5rem 2rem 1rem !important;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.p-confirm-dialog .p-dialog-content {
  padding: 1.75rem 2rem 2rem !important;
  background: #ffffff;
}

.p-confirm-dialog .p-dialog-footer {
  padding: 1.25rem 2rem 1.5rem !important;
  border-top: 1px solid #e5e7eb;
  gap: 0.75rem !important;
  background: #ffffff;
}

.p-confirm-dialog .p-confirm-dialog-icon {
  font-size: 2rem !important;
  margin-right: 1rem !important;
  color: #f59e0b;
}

.p-confirm-dialog .p-confirm-dialog-message {
  margin-left: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #374151;
}

.p-confirm-dialog .p-dialog-footer .p-button {
  padding: 0.65rem 1.25rem !important;
  font-size: 0.95rem !important;
  min-width: 100px;
  border-radius: 0.5rem !important;
}

.p-confirm-dialog .p-dialog-footer .p-button .p-button-icon {
  font-size: 0.9rem !important;
}

.p-confirm-dialog .p-dialog-footer .p-button-danger {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
}

.p-confirm-dialog .p-dialog-footer .p-button-danger:hover {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
}

.p-confirm-dialog .p-dialog-footer .p-button-text {
  color: #4b5563 !important;
}

.p-confirm-dialog .p-dialog-footer .p-button-text:hover {
  background: #f3f4f6 !important;
  color: #374151 !important;
}

/* ===== DROPDOWN ENHANCEMENTS ===== */
.p-dropdown {
  border: 1px solid #ced4da;
  transition: all 0.2s;
}

.p-dropdown:not(.p-disabled):hover {
  border-color: #2F5597;
}

.p-dropdown:not(.p-disabled).p-focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2rem rgba(47, 85, 151, 0.2);
  border-color: #2F5597;
}

.p-dropdown-panel {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #e5e7eb;
}

.p-dropdown-panel .p-dropdown-items {
  padding: 0.5rem 0 !important;
}

.p-dropdown-panel .p-dropdown-item {
  padding: 0.65rem 1rem !important;
  font-size: 0.95rem !important;
  transition: background-color 0.15s;
}

.p-dropdown-panel .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover {
  background: #f3f4f6;
}

.p-dropdown-panel .p-dropdown-item.p-highlight {
  background: rgba(47, 85, 151, 0.1);
  color: #2F5597;
  font-weight: 500;
}

/* ===== TOAST ENHANCEMENTS ===== */
.p-toast .p-toast-message {
  margin: 0 0 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  min-width: 22rem;
}

.p-toast .p-toast-message .p-toast-message-content {
  padding: 1rem 1.25rem;
  gap: 1rem;
}

.p-toast .p-toast-message .p-toast-message-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.p-toast .p-toast-message .p-toast-summary {
  font-weight: 600;
  font-size: 0.95rem;
}

.p-toast .p-toast-message .p-toast-detail {
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.p-toast .p-toast-message-success .p-toast-message-icon,
.p-toast .p-toast-message-success .p-toast-icon-close {
  color: #10b981;
}

.p-toast .p-toast-message-error .p-toast-message-icon,
.p-toast .p-toast-message-error .p-toast-icon-close {
  color: #ef4444;
}

.p-toast .p-toast-message-warn .p-toast-message-icon,
.p-toast .p-toast-message-warn .p-toast-icon-close {
  color: #f59e0b;
}

.p-toast .p-toast-message-info .p-toast-message-icon,
.p-toast .p-toast-message-info .p-toast-icon-close {
  color: #3b82f6;
}

/* ===== INPUT ENHANCEMENTS ===== */
.p-inputtext,
.p-inputnumber-input,
.p-inputtextarea {
  border: 1px solid #ced4da;
  transition: all 0.2s;
}

.p-inputtext:enabled:hover,
.p-inputnumber:not(.p-disabled):hover .p-inputnumber-input,
.p-inputtextarea:enabled:hover {
  border-color: #2F5597;
}

.p-inputtext:enabled:focus,
.p-inputnumber:not(.p-disabled).p-inputnumber-focus .p-inputnumber-input,
.p-inputtextarea:enabled:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 0.2rem rgba(47, 85, 151, 0.2);
  border-color: #2F5597;
}

.navbar {
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  box-shadow: 0 4px 6px rgba(38, 61, 136, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.navbar-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  box-sizing: border-box;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  min-height: 50px;
}

.navbar-logo:hover {
  opacity: 0.9;
}

.navbar-logo-image {
  height: 38px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(1.1);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.nav-link:hover {
  color: white;
  border-bottom-color: white;
}

.nav-link-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link-button:hover {
  color: white;
  border-bottom-color: white;
}

.nav-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-login,
.btn-signup {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  white-space: nowrap;
}

.btn-login {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-login:hover {
  background: white;
  color: #667eea;
}

.btn-signup {
  background: white;
  color: #667eea;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay Backdrop */
@media (max-width: 768px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 98;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

.mobile-menu {
  display: none;
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  padding: 1.5rem 1rem;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-menu-close:active {
  transform: rotate(90deg) scale(0.95);
}

@media (max-width: 768px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    gap: 0;
    padding: 4rem 1rem 2rem;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
    display: flex !important;
  }

  .navbar.menu-open .mobile-menu {
    right: 0;
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

.mobile-menu a,
.mobile-menu .nav-link-mobile {
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.mobile-menu a:hover,
.mobile-menu .nav-link-mobile:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-5px);
}

.mobile-menu a:active {
  transform: translateX(-3px);
  opacity: 0.8;
}

.mobile-menu .btn-login,
.mobile-menu .btn-signup {
  width: 100%;
  text-align: center;
  padding: 0.875rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.mobile-menu .btn-login {
  background: transparent;
  color: white;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.mobile-menu .btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mobile-menu .btn-login:active {
  transform: translateY(0);
  opacity: 0.8;
}

.mobile-menu .btn-signup {
  background: white;
  color: #263d88;
  transition: all 0.3s ease;
}

.mobile-menu .btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu .btn-signup:active {
  transform: translateY(0);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0.75rem 1rem;
    gap: 0;
  }

  .navbar-logo {
    min-height: 45px;
    font-size: 1rem;
    flex: 1;
  }

  .nav-menu {
    display: none;
  }

  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-container.mobile-open {
    flex-wrap: wrap;
  }

  .mobile-menu {
    display: flex;
    width: 100%;
  }

  .mobile-menu a:last-of-type {
    border-bottom: none;
  }
}
.hero {
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  padding: 6rem 2rem;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: white;
  color: #2F5597;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.hero-image {
  animation: slideInRight 0.8s ease-out;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero-banner-image {
  width: 320px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: phoneFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-banner-image:nth-child(1) {
  animation: phoneFloat 3s ease-in-out infinite 0.1s;
  animation-delay: 0.1s;
}

.hero-banner-image:nth-child(2) {
  animation: phoneFloat 3s ease-in-out infinite;
  animation-delay: 0.3s;
}

.hero-image:hover .hero-banner-image {
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-container {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-image {
    height: 300px;
    margin-top: 2rem;
  }
}
.features {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #667eea;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 25px;
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInDown 0.6s ease-out 0.1s both;
}

.section-header p {
  font-size: 1.15rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInDown 0.6s ease-out 0.2s both;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid #f0f0f0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  border-color: #e8e8f0;
}

.feature-icon {
  font-size: 3rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.15) 100%);
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .features {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2rem;
  }
}
.about {
  padding: 6rem 2rem;
  background: white;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-content > p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.point {
  display: flex;
  gap: 1.5rem;
}

.point-icon {
  font-size: 1.5rem;
  color: #263d88;
  flex-shrink: 0;
  line-height: 1;
}

.point h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.point p {
  color: #666;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.big-stat {
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.big-stat .number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.big-stat .label {
  font-size: 1rem;
  opacity: 0.95;
}

.small-stat {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
}

.small-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.small-stat .label {
  font-size: 0.875rem;
  color: #666;
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content h2 {
    font-size: 1.875rem;
  }

  .about-content > p {
    font-size: 1rem;
  }

  .about-points {
    gap: 1.5rem;
  }

  .point {
    gap: 1rem;
  }

  .point-icon {
    font-size: 1.5rem;
  }

  .big-stat .number {
    font-size: 2.5rem;
  }
}
.pricing {
  padding: 6rem 2rem;
  background: white;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #263d88;
  box-shadow: 0 10px 30px rgba(47, 85, 151, 0.1);
}

.pricing-card.highlighted {
  border-color: #263d88;
  box-shadow: 0 20px 40px rgba(38, 61, 136, 0.15);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.plan-description {
  color: #666;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #263d88;
}

.period {
  color: #666;
  font-size: 0.9375rem;
}

.btn-plan {
  width: 100%;
  padding: 0.875rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.btn-primary-plan {
  background: linear-gradient(135deg, #2F5597 0%, #1e3a5f 100%);
  color: white;
}

.btn-primary-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(38, 61, 136, 0.3);
}

.btn-secondary-plan {
  background: white;
  color: #263d88;
  border: 2px solid #263d88;
}

.btn-secondary-plan:hover {
  background: #f0f0ff;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-separator {
  height: 1px;
  background: #e0e0e0;
  margin: 0.5rem 0;
}

.optional-section {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #fbbf24;
}

.optional-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d97706;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.optional-feature {
  color: #666;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #333;
  font-size: 0.9375rem;
}

.checkmark {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.25rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.pricing-note {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.pricing-footer p {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .pricing {
    padding: 4rem 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.highlighted {
    transform: scale(1);
  }

  .amount {
    font-size: 2rem;
  }

  .features-list {
    gap: 0.75rem;
  }
}
.mobile-app {
  background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
  padding: 8rem 2rem;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.mobile-app::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(38, 61, 136, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.mobile-app::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(38, 61, 136, 0.03);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.mobile-app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #263d88;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
}

/* Gallery Section */
.mobile-gallery {
  display: flex;
  justify-content: center;
  margin: 0;
}

.gallery-viewer {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  max-width: 700px;
  width: 100%;
}

.screenshot-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.screenshot-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(38, 61, 136, 0.2),
              0 0 1px rgba(38, 61, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(38, 61, 136, 0.1);
  position: relative;
}

.screenshot-placeholder:hover {
  box-shadow: 0 20px 60px rgba(38, 61, 136, 0.25),
              0 0 1px rgba(38, 61, 136, 0.1);
  transform: translateY(-4px);
}

.screenshot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 0.3s ease-in-out;
  filter: none;
}

.screenshot-image.loading {
  opacity: 0;
}

.screenshot-image.loaded {
  animation: fadeIn 0.4s ease-in-out;
}

.loading-skeleton {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skeleton-pulse {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.screenshot-placeholder.error-state {
  background: linear-gradient(135deg, #fff9f0 0%, #fff0e6 100%);
}

.screenshot-placeholder.error-state::after {
  content: 'Screenshot sedang diproses...';
  position: absolute;
  color: #999;
  font-size: 0.875rem;
  text-align: center;
}

.screenshot-title {
  text-align: center;
  max-width: 500px;
}

.screenshot-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #263d88;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.screenshot-title p {
  font-size: 1.0625rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.screenshot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.feature-badge {
  background: linear-gradient(135deg, rgba(38, 61, 136, 0.08) 0%, rgba(26, 41, 87, 0.05) 100%);
  border: 1px solid rgba(38, 61, 136, 0.15);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #263d88;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.feature-badge i {
  font-size: 0.875rem;
}

.feature-badge:hover {
  background: linear-gradient(135deg, rgba(38, 61, 136, 0.12) 0%, rgba(26, 41, 87, 0.08) 100%);
  border-color: #263d88;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  color: rgba(0, 0, 0, 0.6);
}

.thumbnail-placeholder {
  width: 100px;
  height: 170px;
  background: white;
  border: 2px solid rgba(38, 61, 136, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(38, 61, 136, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.thumbnail:hover .thumbnail-placeholder {
  border-color: #263d88;
  box-shadow: 0 6px 16px rgba(38, 61, 136, 0.12);
  transform: translateY(-2px);
}

.thumbnail.active .thumbnail-placeholder {
  border-color: #263d88;
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  color: white;
  box-shadow: 0 12px 28px rgba(38, 61, 136, 0.3);
  transform: scale(1.05);
}

.thumbnail span {
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  max-width: 100px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.thumbnail:hover span {
  color: #263d88;
}

.thumbnail.active span {
  color: #263d88;
  font-weight: 600;
}

/* Features Grid */
.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.mobile-feature-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(38, 61, 136, 0.15);
}

.mobile-feature-icon {
  font-size: 2.5rem;
  color: #263d88;
  margin-bottom: 1rem;
  display: block;
}

.mobile-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.mobile-feature-card p {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

/* CTA Section */
.mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(38, 61, 136, 0.1);
}

.btn-download {
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(38, 61, 136, 0.3);
}

.btn-download i {
  font-size: 1.25rem;
}

.system-req {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.system-req i {
  color: #263d88;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mobile-app-container {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.125rem;
  }

  .screenshot-placeholder {
    max-width: 300px;
  }

  .thumbnail-placeholder {
    width: 90px;
    height: 155px;
  }

  .mobile-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobile-app {
    padding: 4rem 1rem;
  }

  .mobile-app::before {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
  }

  .mobile-app::after {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
  }

  .mobile-app-container {
    padding: 0;
    gap: 2rem;
  }

  .section-header {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .gallery-viewer {
    gap: 2rem;
  }

  .screenshot-display {
    gap: 1.5rem;
  }

  .screenshot-placeholder {
    max-width: 280px;
    border-radius: 24px;
  }

  .screenshot-title h3 {
    font-size: 1.375rem;
  }

  .screenshot-title p {
    font-size: 0.9375rem;
  }

  .screenshot-features {
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .feature-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }

  .gallery-thumbnails {
    gap: 0.75rem;
  }

  .thumbnail {
    gap: 0.5rem;
  }

  .thumbnail-placeholder {
    width: 70px;
    height: 120px;
    font-size: 1.5rem;
  }

  .thumbnail span {
    font-size: 0.7rem;
    max-width: 70px;
  }

  .mobile-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mobile-feature-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .mobile-app {
    padding: 3rem 0.75rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 0.9375rem;
  }

  .gallery-viewer {
    gap: 1.5rem;
  }

  .screenshot-placeholder {
    max-width: 240px;
    border-radius: 20px;
  }

  .screenshot-title h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .screenshot-title p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .gallery-thumbnails {
    gap: 0.5rem;
  }

  .thumbnail-placeholder {
    width: 60px;
    height: 100px;
    font-size: 1.25rem;
  }

  .thumbnail span {
    font-size: 0.65rem;
    max-width: 60px;
  }
}
.footer {
  background: #1a1a1a;
  color: white;
}

.footer-content {
  padding: 4rem 2rem 2rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}

.footer-logo-image {
  height: 40px;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #263d88;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #263d88;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #263d88;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 1rem 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .social-links {
    flex-wrap: wrap;
  }
}
.landing-page {
  width: 100%;
  overflow-x: hidden;
}

.cta-section {
  background: linear-gradient(135deg, #263d88 0%, #1a2957 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-cta {
  padding: 1rem 2.5rem;
  background: white;
  color: #263d88;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.875rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
  }
}
/* Blog List Page Styles */

.blog-list-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f9fafb;
}

.blog-list-container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  width: 100%;
}

.blog-list-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-list-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #263d88;
  margin-bottom: 15px;
}

.blog-list-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

/* Grid */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Card */
.blog-list-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(38, 61, 136, 0.15);
}

.blog-list-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

.blog-list-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-list-card:hover .blog-list-card-image img {
  transform: scale(1.1);
}

.blog-list-card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #263d88 0%, #3a52a3 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(38, 61, 136, 0.3);
}

.blog-list-card-content {
  padding: 24px;
}

.blog-list-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-card-excerpt {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}

.blog-list-card-author,
.blog-list-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-list-card-meta i {
  font-size: 1rem;
  color: #263d88;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.pagination-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-weight: 600;
  color: #263d88;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #263d88;
  color: white;
  border-color: #263d88;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-number:hover {
  border-color: #263d88;
  color: #263d88;
}

.pagination-number.active {
  background: linear-gradient(135deg, #263d88 0%, #3a52a3 100%);
  color: white;
  border-color: transparent;
}

.pagination-dots {
  color: #9ca3af;
  font-weight: bold;
  padding: 0 5px;
}

/* Empty State */
.blog-list-empty {
  text-align: center;
  padding: 80px 20px;
}

.blog-list-empty i {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 20px;
}

.blog-list-empty h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.blog-list-empty p {
  font-size: 1rem;
  color: #6b7280;
}

/* Skeleton */
.blog-list-card.skeleton {
  pointer-events: none;
}

.skeleton-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

.skeleton-content {
  padding: 24px;
}

.skeleton-line {
  height: 20px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 12px;
}

.skeleton-line.short {
  width: 60%;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blog-list-container {
    padding: 100px 15px 40px;
  }

  .blog-list-header h1 {
    font-size: 2rem;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pagination-numbers {
    display: none;
  }

  .pagination-btn {
    flex: 1;
    justify-content: center;
  }
}
/* Blog Detail Page Styles */

.blog-detail-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f9fafb;
}

.blog-detail-container {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  width: 100%;
}

/* Header */
.blog-detail-header {
  margin-bottom: 40px;
}

.btn-back-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  color: #263d88;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-back-inline:hover {
  background: #263d88;
  color: white;
  border-color: #263d88;
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #263d88 0%, #3a52a3 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 0.95rem;
  color: #6b7280;
}

.blog-detail-author,
.blog-detail-date,
.blog-detail-views {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-meta i {
  font-size: 1.1rem;
  color: #263d88;
}

/* Image */
.blog-detail-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.blog-detail-content {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  color: #1f2937;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
}

.blog-detail-content h1 {
  font-size: 2rem;
}

.blog-detail-content h2 {
  font-size: 1.75rem;
}

.blog-detail-content h3 {
  font-size: 1.5rem;
}

.blog-detail-content p {
  margin-bottom: 1.5em;
}

.blog-detail-content a {
  color: #263d88;
  font-weight: 600;
  text-decoration: underline;
}

.blog-detail-content a:hover {
  color: #1a2957;
}

.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2em 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

.blog-detail-content li {
  margin-bottom: 0.75em;
}

.blog-detail-content blockquote {
  border-left: 4px solid #263d88;
  padding-left: 1.5em;
  margin: 2em 0;
  color: #6b7280;
  font-style: italic;
}

.blog-detail-content code {
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.blog-detail-content pre {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5em;
  border-radius: 12px;
  overflow-x: auto;
  margin: 2em 0;
}

.blog-detail-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

/* Error State */
.blog-detail-error {
  text-align: center;
  padding: 80px 20px;
}

.blog-detail-error i {
  font-size: 4rem;
  color: #ef4444;
  margin-bottom: 20px;
}

.blog-detail-error h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
}

.btn-back {
  padding: 12px 32px;
  background: linear-gradient(135deg, #263d88 0%, #3a52a3 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(38, 61, 136, 0.4);
}

/* Skeleton */
.blog-detail-skeleton {
  padding: 40px 0;
}

.skeleton-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  margin-bottom: 40px;
}

.skeleton-content {
  background: white;
  padding: 50px;
  border-radius: 20px;
}

.skeleton-line {
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 20px;
}

.skeleton-line.short {
  width: 60%;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail-container {
    padding: 100px 15px 40px;
  }

  .blog-detail-title {
    font-size: 1.75rem;
  }

  .blog-detail-meta {
    flex-direction: column;
    gap: 12px;
  }

  .blog-detail-image {
    height: 300px;
  }

  .blog-detail-content {
    padding: 30px 20px;
    font-size: 1rem;
  }

  .blog-detail-content h1 {
    font-size: 1.5rem;
  }

  .blog-detail-content h2 {
    font-size: 1.35rem;
  }

  .blog-detail-content h3 {
    font-size: 1.2rem;
  }
}
.legal-page {
  min-height: 100vh;
  padding-top: 80px;
  background: #f1f5f9;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-bottom: 60px;
}

.legal-container h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: -0.02em;
}

.last-updated {
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 50px;
  font-style: italic;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.legal-container section {
  margin-bottom: 50px;
}

.legal-container h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #263d88;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #e0e7ff;
  position: relative;
}

.legal-container h2::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #263d88, #4f46e5);
}

.legal-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin: 25px 0 15px;
}

.legal-container p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.legal-container ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.legal-container ul li {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
}

.legal-container ul li::before {
  content: "✓";
  color: #263d88;
  font-weight: bold;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0;
}

.legal-container strong {
  color: #1e293b;
  font-weight: 600;
}

.legal-container a {
  color: #263d88;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.legal-container a:hover {
  color: #1a2957;
  border-bottom-color: #263d88;
}

.contact-info {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #263d88;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(38, 61, 136, 0.1);
}

.contact-info p {
  margin-bottom: 12px;
  font-weight: 500;
}

.contact-info strong {
  color: #263d88;
}

.acceptance-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.acceptance-notice p {
  color: #78350f;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding-top: 60px;
  }

  .legal-container {
    padding: 40px 20px;
    border-radius: 0;
    margin-bottom: 0;
  }

  .legal-container h1 {
    font-size: 2.25rem;
  }

  .legal-container h2 {
    font-size: 1.5rem;
  }

  .legal-container h3 {
    font-size: 1.15rem;
  }

  .legal-container p,
  .legal-container ul li {
    font-size: 0.95rem;
  }

  .contact-info {
    padding: 20px;
  }

  .acceptance-notice {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .legal-container {
    padding: 30px 15px;
  }

  .legal-container h1 {
    font-size: 1.75rem;
  }

  .legal-container h2 {
    font-size: 1.35rem;
  }
}
/* ========================================
   Custom DataTable Pagination Styles
   ======================================== */

/* Pagination Container */
.p-datatable .p-paginator {
  padding: 1rem 0.75rem;
  background: transparent;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Current Page Report */
.p-datatable .p-paginator .p-paginator-current {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: auto;
}

/* Page Links Container */
.p-datatable .p-paginator .p-paginator-pages {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Page Link Buttons */
.p-datatable .p-paginator .p-paginator-page,
.p-datatable .p-paginator .p-paginator-next,
.p-datatable .p-paginator .p-paginator-prev,
.p-datatable .p-paginator .p-paginator-first,
.p-datatable .p-paginator .p-paginator-last {
  min-width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.p-datatable .p-paginator .p-paginator-page:not(.p-disabled):hover,
.p-datatable .p-paginator .p-paginator-next:not(.p-disabled):hover,
.p-datatable .p-paginator .p-paginator-prev:not(.p-disabled):hover,
.p-datatable .p-paginator .p-paginator-first:not(.p-disabled):hover,
.p-datatable .p-paginator .p-paginator-last:not(.p-disabled):hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

/* Active Page */
.p-datatable .p-paginator .p-paginator-page.p-highlight {
  background: #2F5597;
  border-color: #2F5597;
  color: #ffffff;
  font-weight: 600;
}

.p-datatable .p-paginator .p-paginator-page.p-highlight:hover {
  background: #1e3a5f;
  border-color: #1e3a5f;
}

/* Disabled State */
.p-datatable .p-paginator .p-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Rows Per Page Dropdown */
.p-datatable .p-paginator .p-dropdown {
  height: 2rem;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
}

.p-datatable .p-paginator .p-dropdown:hover {
  border-color: #d1d5db;
}

.p-datatable .p-paginator .p-dropdown-label {
  padding: 0.375rem 0.75rem;
}

/* Remove First/Last Page Links for cleaner look */
.p-datatable .p-paginator .p-paginator-first,
.p-datatable .p-paginator .p-paginator-last {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .p-datatable .p-paginator {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .p-datatable .p-paginator .p-paginator-current {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
  
  .p-datatable .p-paginator .p-paginator-pages {
    order: -1;
  }
}
