/* ============================================
   PITCH FOR IMPACT - Premium UI/UX Styles
   ============================================ */

:root {
  --primary-color: #F39C12;
  --primary-dark: #d68910;
  --primary-light: #f5b040;
  --secondary-color: #1F6F8B;
  --secondary-hover: #185a71;
  --accent-color: #4FC3F7;
  --accent-dark: #039be5;
  --dark-color: #1e6c88;
  --light-bg: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #d68910 100%);
  --gradient-hero: linear-gradient(135deg, #d68910 0%, #F39C12 50%, #fff 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #fafbfc;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: #555 !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(26, 95, 122, 0.08);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.btn-nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26, 95, 122, 0.4);
  color: white !important;
}

.btn-nav-cta::after {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
 background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--secondary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(243, 156, 18, 0.5);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: 100px 0;
}

.section-light {
  background: white;
}

.section-gray {
  background: var(--light-bg);
}

.section-dark {
  background: var(--dark-color);
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-dark .section-title h2 {
  color: white;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: white;
  overflow: hidden;
}

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

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.card-icon-primary {
  background: rgba(26, 95, 122, 0.1);
  color: var(--primary-color);
}

.card-icon-secondary {
    background: rgb(255 193 7);
    color: var(--secondary-color);
}

.card-icon-accent {
    background: #f8f9fa;
    color: var(--accent-color);
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.card-text {
  color: #666;
  line-height: 1.8;
}

/* ============================================
   FEATURE BOXES
   ============================================ */

.feature-box {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-box .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 0 0 3rem 0;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: calc(100% - 40px);
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 40px;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 4px solid white;
  border-radius: 50%;
  top: 2rem;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-number {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control,
.form-select {
  border: 2px solid #e8ecef;
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition);
  background: #fafbfc;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1);
  background: white;
}

.form-control.is-valid {
  border-color: var(--accent-color);
}

.form-control.is-invalid {
  border-color: #e74c3c;
}

.invalid-feedback {
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.upload-area {
  border: 2px dashed #d0d7de;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  background: #fafbfc;
  cursor: pointer;
  position: relative;
}

/* Hide default file input */
.upload-area input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

/* Make sure button is clickable */
.upload-area .btn-parcourir {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--primary-color);
  background: rgba(26, 95, 122, 0.05);
}

.upload-area.has-file {
  border-color: var(--accent-color);
  background: rgba(39, 174, 96, 0.05);
}

.upload-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.upload-text {
  color: #666;
  margin-bottom: 0.5rem;
}

.upload-hint {
  font-size: 0.85rem;
  color: #888;
}

.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(39, 174, 96, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.file-name {
  color: var(--accent-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-remove {
  color: #e74c3c;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
}

.file-remove:hover {
  color: #c0392b;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 95, 122, 0.4);
}

.btn-secondary {
  background: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.btn-success {
  background: var(--accent-color);
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-success:hover {
  background: #219a52;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-lg-custom {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* ============================================
   CHECKLIST
   ============================================ */

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist-icon {
  width: 28px;
  height: 28px;
  background: rgba(39, 174, 96, 0.15);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-content strong {
  display: block;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.checklist-content span {
  color: #666;
  font-size: 0.95rem;
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */

.confirmation-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: 2rem;
}

.confirmation-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 4rem 3rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: rgba(39, 174, 96, 0.15);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.confirmation-title {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.confirmation-text {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.confirmation-details {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.confirmation-details h4 {
  font-size: 1rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.confirmation-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.confirmation-details li {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e8ecef;
}

.confirmation-details li:last-child {
  border-bottom: none;
}

.confirmation-details .label {
  color: #666;
}

.confirmation-details .value {
  font-weight: 600;
  color: var(--dark-color);
}

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

.admin-wrapper {
  min-height: 100vh;
  background: var(--light-bg);
}

.admin-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--dark-color);
  padding: 2rem 1.5rem;
  z-index: 1000;
  overflow-y: auto;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.admin-logo img {
  height: 45px;
}

.admin-logo span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.admin-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-nav li {
  margin-bottom: 0.5rem;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.admin-nav a.active {
  background: var(--primary-color);
}

.admin-nav .nav-icon {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.admin-content {
  margin-left: 280px;
  padding: 2rem;
}

.admin-header {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  font-size: 1.75rem;
  margin: 0;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-avatar {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

/* ============================================
   STATS CARDS
   ============================================ */

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

.stat-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}

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

.stat-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.stat-card-icon.primary {
  background: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
}

.stat-card-icon.success {
  background: rgba(79, 195, 247, 0.1);
  color: var(--accent-color);
}

.stat-card-icon.warning {
  background: rgba(31, 111, 139, 0.1);
  color: var(--secondary-color);
}

.stat-card-icon.info {
  background: rgba(79, 195, 247, 0.15);
  color: var(--accent-dark);
}

.stat-card-content h3 {
  font-size: 2rem;
  margin: 0;
  color: var(--dark-color);
}

.stat-card-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   DATA TABLE
   ============================================ */

.data-table-wrapper {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.table-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.table-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.table-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.table-filters .form-select,
.table-filters .form-control {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  min-width: 180px;
}

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

.data-table thead {
  background: var(--light-bg);
}

.data-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.data-table tbody tr {
  transition: var(--transition);
}

.data-table tbody tr:hover {
  background: rgba(26, 95, 122, 0.03);
}

.candidate-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.candidate-avatar {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.candidate-info strong {
  display: block;
  color: var(--dark-color);
}

.candidate-info span {
  font-size: 0.85rem;
  color: #666;
}

.badge-custom {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(26, 95, 122, 0.1);
  color: var(--primary-color);
}

.badge-success {
  background: rgba(39, 174, 96, 0.1);
  color: var(--accent-color);
}

.badge-warning {
  background: rgba(243, 156, 18, 0.1);
  color: var(--secondary-color);
}

.table-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-icon-view {
  background: rgba(26, 95, 122, 0.1);
  color: var(--primary-color);
}

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

.btn-icon-download {
  background: rgba(39, 174, 96, 0.1);
  color: var(--accent-color);
}

.btn-icon-download:hover {
  background: var(--accent-color);
  color: white;
}

/* ============================================
   LOGIN PAGE
   ============================================ */

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: 2rem;
}

.login-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 3rem;
  max-width: 450px;
  width: 100%;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.login-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: #666;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .admin-content {
    margin-left: 0;
    padding: 1.5rem;
  }
  
  .admin-sidebar {
    transform: translateX(-100%);
    transition: var(--transition);
  }
  
  .admin-sidebar.open {
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 50px;
    justify-content: flex-start;
  }
  
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: -28px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .form-section {
    padding: 2rem 1.5rem;
  }
  
  .table-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .table-filters {
    width: 100%;
  }
  
  .table-filters .form-select,
  .table-filters .form-control {
    width: 100%;
    min-width: auto;
  }
  
  .data-table {
    font-size: 0.85rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 1.25rem;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
  background-color: var(--secondary-color) !important;
}

.gradient-primary {
  background: var(--gradient-primary);
}

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

.rounded-custom {
  border-radius: var(--border-radius);
}

.rounded-custom-lg {
  border-radius: var(--border-radius-lg);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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