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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(
      135deg,
      rgba(231, 76, 60, 0.1) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
  background-attachment: fixed;
  background-size: cover;
  color: #000;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  padding: 0.2rem 0;
}

.logo::before {
  content: none;
}

.logo img {
  height: 2.5rem !important;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #e74c3c;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #e74c3c;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Theme Toggle Button */
#theme-toggle {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 25px;
}

/* Hero Section */
.hero {
  background: none;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.15;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
  text-align: left;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text .highlight {
  color: #ff6b6b;
}

.hero-text p {
  font-size: 1.3rem;
  color: #434343;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #e74c3c);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.btn-secondary:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: #ff6b6b;
  display: block;
}

.stat-label {
  color: #2c2b2b;
  font-size: 1rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #3e3d3d;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 320px;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  color: #e74c3c;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: #c0392b;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Customers Section */
.customers {
  padding: 6rem 0;
  background: #fff;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.customer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0.6;
  background: #f8f9fa;
}

.customer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.customer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Team Section */
.team {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.team-slider {
  position: relative;
  max-width: 600px;
  margin: 2rem auto 0;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  height: 300px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 5px;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: #e74c3c;
}

/* Compliance Section */
.compliance {
  padding: 6rem 0;
  background: #fff;
  color: #000;
}

.compliance-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.compliance h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.compliance-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.compliance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}

/* Worker Selection Process Panel */
#worker-selection-panel {
  display: none;
  margin-top: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
}

#worker-selection-panel h3 {
  font-size: 1.8rem;
  color: #e74c3c;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

#worker-selection-panel p {
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

#worker-selection-panel > div {
  margin-top: 2rem;
}

#worker-selection-panel div[style*="background:#f5f5f5"] {
  background: #f8f9fa;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border-left: 5px solid #e74c3c;
  transition: all 0.3s ease;
}

#worker-selection-panel div[style*="background:#f5f5f5"]:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

#worker-selection-panel div[style*="background:#f5f5f5"] > div {
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

#worker-selection-panel div[style*="background:#111"] > div {
  background: #222;
  color: #fff;
}

#worker-selection-panel div[style*="background:#f26d6d"] > div {
  background: #ff6b6b;
  color: #fff;
}

#worker-selection-panel div[style*="background:#bdbdbd"] > div {
  background: #ccc;
  color: #333;
}

#worker-selection-panel div[style*="background:#333"] > div {
  background: #444;
  color: #ff6b6b;
}

#worker-selection-panel span[style*="color:#222"] {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

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

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.05) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  color: #e74c3c;
  margin-bottom: 2rem;
}

.contact-info h4 {
  color: #222;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: #444;
  line-height: 1.8;
}

.contact-info h5 {
  color: #222;
  margin-bottom: 0.5rem;
}

.contact-info p[style*="font-size: 0.9rem"] {
  color: #555;
}

.map-container {
  width: 100%;
  height: 450px;
}

.contact-date {
  text-align: center;
  padding: 1rem 0;
  color: #666;
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .contact-content,
  .compliance-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    justify-content: center;
  }

  .team-slider {
    max-width: 100%;
  }

  .logo {
    font-size: 1.5rem;
    padding: 0.1rem 0;
  }

  .logo img {
    height: 2rem !important;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dark Mode */
body.dark-mode {
  background: linear-gradient(
      135deg,
      rgba(231, 76, 60, 0.1) 0%,
      rgba(24, 26, 27, 0.9) 100%
    ),
    url("bg.png") center center/cover no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  color: #fff;
}

body.dark-mode .navbar {
  background: rgba(24, 26, 27, 0.98) !important;
  color: #fff;
}

body.dark-mode .logo {
  color: #fff !important;
  font-size: 1.8rem;
  padding: 0.2rem 0;
}

body.dark-mode .logo img {
  height: 2.5rem !important;
  background-color: white;
}

body.dark-mode .nav-links a {
  color: #fff !important;
}

body.dark-mode .nav-links a:hover {
  color: #ff6b6b !important;
}

body.dark-mode .nav-links a::after {
  background-color: #ff6b6b !important;
}

body.dark-mode .service-card,
body.dark-mode .contact-info,
body.dark-mode .contact-form {
  background: #2c2f33 !important;
  color: #e0e0e0 !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
}

body.dark-mode .team {
  background: linear-gradient(135deg, #1a1c1e 0%, #141618 100%) !important;
}

body.dark-mode .services {
  background: #1a1c1e !important;
}

body.dark-mode .section-header h2 {
  color: #fff !important;
}

body.dark-mode .section-header p {
  color: #f7f4f4 !important;
}

body.dark-mode .services .service-card {
  background: #232526 !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .services .service-card::before {
  background: linear-gradient(45deg, #ff6b6b, #d63939) !important;
}

body.dark-mode .services .service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .services .service-icon {
  color: #ff6b6b !important;
}

body.dark-mode .services .service-card:hover .service-icon {
  color: #d63939 !important;
}

body.dark-mode .services .service-card h3 {
  color: #e0e0e0 !important;
}

body.dark-mode .services .service-card p {
  color: #a0a0a0 !important;
}

body.dark-mode .customers {
  background: #1a1c1e !important;
}

body.dark-mode .customers .section-header p {
  color: #bbb !important;
}

body.dark-mode .customer-logo {
  background: #232526 !important;
  color: #fff !important;
}

body.dark-mode .customer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

body.dark-mode .compliance {
  background: #1a1c1e !important;
  color: #fff !important;
}

body.dark-mode .compliance h2,
body.dark-mode .compliance p,
body.dark-mode .compliance-list li {
  color: #e0e0e0 !important;
}

body.dark-mode .team-slider .slide img {
  filter: brightness(0.8);
}

body.dark-mode .slider-prev,
body.dark-mode .slider-next {
  background: rgba(255, 255, 255, 0.2) !important;
}

body.dark-mode .dot {
  background: #666 !important;
}

body.dark-mode .dot.active {
  background: #ff6b6b !important;
}

body.dark-mode .contact {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.05) 0%,
    rgba(24, 26, 27, 1) 100%
  ) !important;
}

body.dark-mode .contact-info,
body.dark-mode .contact-form {
  background: #232526 !important;
}

body.dark-mode .contact-info h3 {
  color: #ff6b6b !important;
}

body.dark-mode .contact-info h4,
body.dark-mode .contact-info h5 {
  color: #e0e0e0 !important;
}

body.dark-mode .contact-info p {
  color: #a0a0a0 !important;
}

body.dark-mode .contact-info p[style*="font-size: 0.9rem"] {
  color: #bbb !important;
}

body.dark-mode .form-group label {
  color: #fff !important;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
  background: #2c2f33 !important;
  color: #fff !important;
  border-color: #444 !important;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
  border-color: #ff6b6b !important;
}

body.dark-mode .hero-text h1 {
  color: #fff !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode .hero-text p {
  color: #464646 !important;
}

body.dark-mode .stat-label {
  color: #3f3f3f !important;
}

body.dark-mode .team-content,
body.dark-mode .compliance h2,
body.dark-mode .compliance-list li,
body.dark-mode .contact-info h3,
body.dark-mode .contact-form h3 {
  color: #e0e0e0 !important;
}

body.dark-mode .btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #d63939) !important;
  color: #fff !important;
}

body.dark-mode .btn-secondary {
  background: transparent;
  color: #fcfbfb !important;
  border: 2px solid #ff6b6b !important;
}

body.dark-mode .btn-secondary:hover {
  background: #ff6b6b !important;
  color: #fff !important;
}

body.dark-mode #worker-selection-panel {
  background: #232526 !important;
  color: #e0e0e0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode #worker-selection-panel h3 {
  color: #ff6b6b !important;
}

body.dark-mode #worker-selection-panel p {
  color: #bbb !important;
}

body.dark-mode #worker-selection-panel div[style*="background:#f8f9fa"] {
  background: #2c2f33 !important;
  border-left-color: #ff6b6b !important;
}

body.dark-mode #worker-selection-panel div[style*="background:#f8f9fa"] > div {
  background: #333 !important;
  color: #e0e0e0 !important;
}

body.dark-mode #worker-selection-panel div[style*="background:#f8f9fa"]:hover {
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3) !important;
}

body.dark-mode #worker-selection-panel span[style*="color:#333"] {
  color: #bbb !important;
}


/* Footer */
footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0 0;
  color: #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 3rem;
  margin-right: 0.75rem;
}

.footer-tagline {
  color: #555;
  font-size: 1rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #e74c3c;
}

.footer-section p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.powered-by {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.nekko-logo {
  height: 2rem;
  margin-right: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between; /* left + right */
  align-items: center;
  padding: 15px 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #f1f1f1;
}

.footer-bottom p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
}

/* Dark Mode Footer */
body.dark-mode footer {
  background: linear-gradient(135deg, #1a1c1e 0%, #141618 100%);
  color: #e0e0e0;
}

body.dark-mode .footer-logo-link {
  color: #e0e0e0;
}
body.dark-mode .footer-logo-link img{
  background-color: #e0e0e0;
}

body.dark-mode .footer-tagline {
  color: #bbb;
}

body.dark-mode .footer-section h4 {
  color: #ff6b6b;
}

body.dark-mode .footer-section ul li a {
  color: #bbb;
}

body.dark-mode .footer-section ul li a:hover {
  color: #ff6b6b;
}

body.dark-mode .footer-section p {
  color: #bbb;
}

body.dark-mode .powered-by {
  color: #e0e0e0;
}

body.dark-mode .footer-bottom {
  background: #1a1c1e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-bottom p {
  color: #bbb;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-branding {
    align-items: center;
  }

  .footer-links {
    margin-top: 2rem;
  }
}
