*, *::before, *::after {
  box-sizing: border-box !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.hero-title, .section-title, .service-title, .process-title, .case-title,
.team-name, .footer-title {
  color: var(--primary-color);
}

/* Badge renkleri doğru çalışmalı */
.badge {
  background: linear-gradient(145deg, var(--dark-bg-light), var(--dark-bg));
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  display: inline-block;
}

.badge.bg-primary {
  background-color: var(--primary-color) !important;
  color: #000 !important;
  border-color: var(--primary-color) !important;
}

.badge.bg-secondary {
  background-color: #6c757d !important;
  color: #fff !important;
  border-color: #6c757d !important;
}

.badge.bg-success {
  background-color: var(--success-color) !important;
  color: #fff !important;
  border-color: var(--success-color) !important;
}

/* Span'lar içerdikleri yerde doğru rengi alsın */
span {
  color: inherit;
}

/* Text utility class'ları */
.text-white {
  color: #ffffff !important;
}

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

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

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

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

/* Background utility classes */
.bg-dark {
  background-color: var(--dark-bg) !important;
}

.bg-dark-light {
  background-color: var(--dark-bg-light) !important;
}

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

.bg-success {
  background-color: var(--success-color) !important;
  color: #fff !important;
}

/* Navbar colors */
.navbar {
  background-color: var(--dark-bg) !important;
}

.navbar .nav-link {
  color: var(--text-secondary) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color) !important;
}

/* Alert colors */
.alert {
  border-radius: 12px;
  border: 1px solid;
}

.alert-success {
  background-color: rgba(0, 230, 118, 0.1) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-secondary) !important;
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1) !important;
  border-color: var(--danger-color) !important;
  color: var(--text-secondary) !important;
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1) !important;
  border-color: var(--warning-color) !important;
  color: var(--text-secondary) !important;
}

.alert-info {
  background-color: rgba(0, 230, 118, 0.1) !important;
  border-color: var(--info-color) !important;
  color: var(--text-secondary) !important;
}

:root {
  --primary-color: #00e676;
  --primary-dark: #00c853;
  --secondary-color: #0f1419;
  --dark-bg: #0a0d0f;
  --dark-bg-light: #151b20;
  --dark-bg-lighter: #1f2329;
  --text-primary: #00e676;
  --text-secondary: #ffffff;
  --text-muted: #b0b0b0;
  --border-color: #333333;
  --accent-color: #00e676;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #00e676;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

.contact-form .is-invalid {
  border-color: #ff5252 !important;
  box-shadow: 0 0 10px rgba(255, 82, 82, 0.3) !important;
}

.contact-form .invalid-feedback {
  color: #ff5252 !important;
  font-size: 13px !important;
  margin-top: 5px !important;
}

.admin-panel .bg-light.p-3 {
  background: rgba(0, 230, 118, 0.1) !important;
  border: 1px solid rgba(0, 230, 118, 0.2) !important;
  color: #ffffff !important;
}

.admin-panel .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.admin-panel .form-label.fw-bold {
  color: var(--primary-color) !important;
  font-weight: bold !important;
}

.admin-panel a {
  color: var(--primary-color) !important;
}

.admin-panel a:hover {
  color: #ffffff !important;
}

.admin-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.admin-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}

.admin-panel .dropdown-menu {
  background: rgba(10, 13, 15, 0.95) !important;
  border: 1px solid rgba(0, 230, 118, 0.3) !important;
}

.admin-panel .dropdown-item {
  color: #ffffff !important;
}

.admin-panel .dropdown-item:hover {
  background: rgba(0, 230, 118, 0.2) !important;
  color: var(--primary-color) !important;
}

.admin-panel .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.admin-panel .table {
  color: #ffffff !important;
}

.admin-panel .table th {
  color: var(--primary-color) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.admin-panel .table td {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}

.admin-panel h1, .admin-panel h2, .admin-panel h3, 
.admin-panel h4, .admin-panel h5, .admin-panel h6 {
  color: var(--primary-color) !important;
}

.contact-form .btn-loading {
  position: relative !important;
  pointer-events: none !important;
}

.contact-form .btn-loading::after {
  content: '' !important;
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  top: 50% !important;
  left: 50% !important;
  margin-left: -10px !important;
  margin-top: -10px !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-top-color: #ffffff !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
}

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2);
}

h1, .h1 { font-size: calc(1.375rem + 1.5vw) !important; }
h2, .h2 { font-size: calc(1.325rem + .9vw) !important; }
h3, .h3 { font-size: calc(1.3rem + .6vw) !important; }
h4, .h4 { font-size: calc(1.275rem + .3vw) !important; }
h5, .h5 { font-size: 1.25rem !important; }
h6, .h6 { font-size: 1rem !important; }

.display-1, .display-2, .display-3, .display-4 {
  font-weight: 700;
}

.hero-section {
  background: var(--dark-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color) !important; /* Fallback solid color */
  background: linear-gradient(135deg, var(--primary-color), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.card {
  background: linear-gradient(145deg, var(--dark-bg-light), var(--dark-bg));
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 230, 118, 0.1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 230, 118, 0.3);
  border-color: var(--primary-color);
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

.card-text,
.card-body p,
.card-body div {
  color: var(--text-secondary);
}

/* Paragraf ve text elementleri */
p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-subtitle,
.section-description {
  color: rgba(255, 255, 255, 0.85);
}

/* Div elementleri varsayılan renk almasın */
div {
  color: inherit;
}

/* Liste elementleri */
ul, ol {
  color: var(--text-secondary);
}

li {
  color: inherit;
}

/* Link'ler */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.card-text {
  color: var(--text-secondary);
}

.service-card {
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.05), transparent);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

/* Team Cards */
.team-card {
  background: linear-gradient(145deg, rgba(15, 20, 25, 0.9), rgba(10, 13, 15, 0.95));
  border: 2px solid rgba(0, 230, 118, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 16px 48px rgba(0, 230, 118, 0.2);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card .card-body {
  padding: 2rem;
  background: transparent;
}

.team-avatar-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 200, 100, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(0, 230, 118, 0.3);
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar-placeholder {
  transform: scale(1.1);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.3);
}

.team-name {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-position {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-description {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.team-expertise .badge {
  background: linear-gradient(145deg, var(--dark-bg-light), var(--dark-bg)) !important;
  border: 1px solid rgba(0, 230, 118, 0.4) !important;
  color: var(--primary-color) !important;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.team-expertise .badge:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
  border-color: var(--primary-color) !important;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.team-hierarchy {
  margin-top: 2rem;
}

.hierarchy-level {
  background: var(--dark-bg-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hierarchy-level h3 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.hierarchy-level h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.table-dark {
  --bs-table-bg: var(--dark-bg);
  --bs-table-border-color: var(--border-color);
}

.table-dark td {
  border-bottom-color: var(--border-color);
  vertical-align: middle;
  padding: 1rem 0.75rem;
}

.table-dark th {
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 230, 118, 0.05);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

.team-hierarchy .badge {
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid currentColor;
}

.form-control {
  background-color: var(--dark-bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: var(--dark-bg-light);
  border-color: var(--primary-color);
  color: var(--text-secondary);
  box-shadow: 0 0 0 0.2rem rgba(0, 208, 132, 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-select {
  background-color: var(--dark-bg-light) !important;
  border: 1px solid var(--border-color);
  color: var(--text-secondary) !important;
}

.form-select:focus {
  background-color: var(--dark-bg-light) !important;
  border-color: var(--primary-color);
  color: var(--text-secondary) !important;
}

/* Button Styles */
.btn {
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: #000;
}

.btn-success:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.3);
}

.btn-outline-success {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-success:hover {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
}

.btn-secondary {
  background: var(--dark-bg-lighter);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  background: var(--dark-bg-light);
  border-color: var(--primary-color);
  color: var(--text-secondary);
}

.btn-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
}

.btn-scroll-top.show {
  display: flex;
}

.case-study-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.case-study-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image {
  transform: scale(1.05);
}

.case-study-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: white;
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.case-study-client {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.case-study-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.case-study-tech .badge {
  background: var(--dark-bg-lighter);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  body {
    padding-top: 60px;
  }
  
  .contact-btn {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .navbar,
  .footer,
  .btn-scroll-top {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d1421 100%);
  margin-top: auto;
  flex-shrink: 0;
}

.footer-main {
  border-top: 3px solid #00e676;
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00e676, transparent);
}

.footer-section {
  height: 100%;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #00e676;
}

.footer-links {
  margin: 0;
  padding: 0;
}

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

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #00e676;
  padding-left: 8px;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #00e676;
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 5px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  color: #00e676;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00e676;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.contact-info .contact-item {
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-radius: 8px;
}

.contact-info .contact-item:hover {
  background: rgba(0, 230, 118, 0.05);
  padding-left: 1rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  font-size: 0.85rem;
}

.footer-legal .footer-link {
  font-size: 0.85rem;
  padding: 0.2rem 0;
}

.footer-legal .footer-link:hover {
  padding-left: 0;
}

@media (max-width: 768px) {
  .social-links {
    justify-content: center;
    margin-top: 2rem;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 2rem;

  }
  
  .footer-legal {
    text-align: center;
    margin-top: 1rem;
  }
  
  .contact-info .contact-item {
    justify-content: center;
  }
}

main {
  flex: 1 0 auto;
  padding-bottom: 2rem;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color) !important;
}

body, .container, .row, .col, section, main, .hero-section, .section {
  background-color: var(--dark-bg) !important;
}

div, .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  background-color: var(--dark-bg) !important;
}

.row, [class*="col-"] {
  background-color: var(--dark-bg) !important;
}

.jumbotron, .modal-content, .popover, .tooltip-inner, .dropdown-menu {
  background-color: var(--dark-bg-light) !important;
  color: var(--text-secondary) !important;
}

.container, .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

[class*="col-"] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.table, .table-striped, .table-bordered, .table-hover {
  background-color: var(--dark-bg-light) !important;
  color: var(--text-secondary) !important;
}

.table th, .table td {
  border-color: var(--border-color) !important;
  background-color: var(--dark-bg-light) !important;
  color: var(--text-secondary) !important;
}

.pagination, .page-link {
  background-color: var(--dark-bg) !important;
  color: var(--text-secondary) !important;
  border-color: var(--border-color) !important;
}

.input-group-text {
  background-color: var(--dark-bg-light) !important;
  color: var(--text-secondary) !important;
  border-color: var(--border-color) !important;
}

.table {
  color: var(--text-secondary);
}

.table td, .table th {
  color: var(--text-secondary);
}



/* Modern Process Styles */
.process-step-card {
  background: linear-gradient(145deg, rgba(15, 20, 25, 0.9), rgba(10, 13, 15, 0.95));
  border: 2px solid rgba(0, 230, 118, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 16px 48px rgba(0, 230, 118, 0.2), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.process-step-card:hover::before {
  opacity: 1;
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.process-number-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #00c853);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 230, 118, 0.3);
}

.process-icon-modern {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.8;
}

.process-title-modern {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process-description-modern {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.btn-modern {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 200, 100, 0.15));
  border: 2px solid rgba(0, 230, 118, 0.3);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  background: linear-gradient(135deg, var(--primary-color), #00c853);
  border-color: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.3);
}

.process-details-modern {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 230, 118, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
  animation: slideDown 0.4s ease;
}

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

.details-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-duration-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(0, 230, 118, 0.1);
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.step-duration-modern i {
  color: var(--primary-color);
}

.process-visual-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 300px;
}

.visual-icon-wrapper {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15), transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.visual-icon-wrapper i {
  font-size: 6rem;
  color: rgba(0, 230, 118, 0.3);
}

.step-status-modern {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Advantage Cards */
.advantage-card {
  background: linear-gradient(145deg, rgba(15, 20, 25, 0.8), rgba(10, 13, 15, 0.9));
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.2);
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(0, 200, 100, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.3);
}

.advantage-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.advantage-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.admin-panel .badge {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
}

.admin-panel .badge.bg-warning {
  background-color: #ffc107 !important;
  color: #000000 !important;
}

.admin-panel .badge.bg-success {
  background-color: var(--primary-color) !important;
  color: #000000 !important;
}

.admin-panel .badge.bg-primary {
  background-color: #0d6efd !important;
  color: #ffffff !important;
}

.admin-panel .badge.bg-secondary {
  background-color: #6c757d !important;
  color: #ffffff !important;
}

.admin-panel a[href^="mailto:"], 
.admin-panel a[href^="tel:"] {
  color: var(--primary-color) !important;
  text-decoration: none !important;
}

.admin-panel a[href^="mailto:"]:hover, 
.admin-panel a[href^="tel:"]:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}