/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
     background-image: url('background.png');
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #00f5ff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ff00d4;
}

.call-btn img {
    height: 45px;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.opis-img {
    max-width: 80%;
    height: auto;
}

/* Usługi */
.services-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #00f5ff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.service-item h3 {
    color: #ff00d4;
    margin-bottom: 10px;
}

.service-item:hover {
    transform: translateY(-5px);
}

/* Status */
.status-section {
    padding: 80px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
}

#status-form input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-right: 10px;
    width: 250px;
}

#status-form .btn {
    padding: 12px 20px;
    background: #00f5ff;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#status-result {
    margin-top: 30px;
    text-align: left;
    color: #fff;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
}

.modal-content input {
    padding: 10px;
    margin: 15px 0;
    width: 100%;
    border-radius: 8px;
    border: none;
}

.modal-content .btn {
    background: #ff00d4;
    color: #fff;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

/* Kontakt */
.contact-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.contact-section form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 100%;
}

.contact-section .btn {
    padding: 12px;
    background: #00f5ff;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 14px;
}
/* Status Box */
.status-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    font-size: 16px;
    line-height: 1.6;
    animation: fadeIn 0.4s ease-in-out;
}

.status-box h3 {
    color: #00f5ff;
    margin-bottom: 15px;
    font-size: 20px;
}

.status-box p {
    margin: 8px 0;
    color: #eee;
}

.status-box strong {
    color: #ff00d4;
}

/* Status bar (kroki zgłoszenia) */
.status-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.status-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    margin: 0 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #999;
    font-weight: bold;
    transition: all 0.3s;
}

.status-step.active {
    background: linear-gradient(135deg, #00f5ff, #ff00d4);
    color: #000;
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.7);
}

/* Przyciski małe (np. "Zobacz szczegóły") */
.btn.small {
    background: #ff00d4;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.btn.small:hover {
    background: #00f5ff;
    color: #000;
}

/* Animacja pojawiania się */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Animowane tło */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, #001020, #000);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
  color: cyan;
}
header nav a {
  color: cyan;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}
header nav a:hover {
  color: magenta;
}

/* Hero */
.hero {
  text-align: center;
  margin-top: 100px;
}
.hero h1 {
  font-size: 48px;
  color: cyan;
}
.hero h1 span {
  text-decoration: underline;
}
.hero p {
  font-size: 18px;
  color: violet;
  margin: 5px 0;
}

/* Services */
.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 60px auto;
  flex-wrap: wrap;
  max-width: 1000px;
}
.service-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card i {
  font-size: 40px;
  color: cyan;
  margin-bottom: 10px;
}
.service-card h3 {
  margin: 10px 0;
  color: #fff;
}
.service-card p {
  color: #bbb;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px cyan;
}

/* CTA */
.cta {
  text-align: center;
  margin-bottom: 100px;
}
.cta-btn {
  padding: 15px 40px;
  background: linear-gradient(45deg, cyan, magenta);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s;
}
.cta-btn:hover {
  box-shadow: 0 0 25px cyan;
  transform: scale(1.1);
}
/* --- MOBILE FIXES --- */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
  }

  .nav-links li a {
    font-size: 18px;
    display: block;
  }

  .navbar .logo img {
    height: 45px;
  }

  .hero {
    flex-direction: column;
    height: auto;
    padding: 100px 10px 60px 10px;
  }

  .opis-img {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }

  .cta {
    margin-bottom: 40px;
  }

  .cta-btn {
    display: inline-block;
    width: 80%;
    padding: 14px 0;
    font-size: 18px;
  }

  .services {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
  }

  .service-card {
    width: 90%;
    max-width: 350px;
  }

  .services-section {
    padding: 60px 10px;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  #status-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #status-form input {
    width: 90%;
    margin: 0;
  }

  #status-form .btn {
    width: 90%;
  }

  .contact-section {
    padding: 60px 10px;
  }

  .contact-section form {
    width: 100%;
  }

  footer {
    font-size: 13px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .cta-btn {
    width: 100%;
    font-size: 16px;
  }

  .nav-links li a {
    font-size: 16px;
  }
}