/* RESET I PODSTAWOWE STYLISTYKI */
body {
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #222222; /* Ciemne tło */
  color: #f5f5f5; /* Jasny tekst na ciemnym tle */
  line-height: 1.6;
}

/* KONTENER/UKŁAD */
.container {
  padding: 0 15px;
}

.content-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #333333; /* Ciemniejszy szary dla sekcji */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Mocny cień dla nowoczesności */
  border-radius: 4px;
  border-left: 5px solid #ffd700; /* Żółty akcent mechaniczny */
}

/* NAGŁÓWEK HERO (BANER) - Mocny, Ciemny Wizerunek */
.hero {
  background-color: #111111;
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 5px solid #ffd700; /* Żółta linia oddzielająca */
}

.hero h1 {
  margin-top: 0;
  font-size: 3em;
  text-transform: uppercase;
  color: #ffd700; /* Żółty tytuł */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.4em;
  font-style: italic;
  color: #cccccc;
}

/* PRZYCISKI (CALL TO ACTION) */
.button {
  display: inline-block;
  padding: 14px 30px;
  margin-top: 25px;
  background-color: #ffd700; /* ŻÓŁTY AKCENT */
  color: #222222; /* Czarny tekst na żółtym tle */
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.2s;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
}

.button:hover {
  background-color: #e6c200;
  transform: translateY(-2px); /* Delikatne uniesienie */
}

.button.secondary {
  background-color: #555555;
  color: #f5f5f5;
}

.button.secondary:hover {
  background-color: #666666;
}

/* STYLISTYKA LIST I NAGŁÓWKÓW */
h2 {
  color: #ffd700; /* Żółte nagłówki sekcji */
  border-bottom: 2px solid #555555;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
h3 {
  color: #f5f5f5;
  margin-top: 25px;
}

.content-section ul {
  list-style: none; /* Używamy własnych ikon/stylów dla list */
  padding: 0;
}

.content-section li {
  padding: 10px 0;
  border-bottom: 1px dashed #444444;
  color: #cccccc;
  padding-left: 25px;
  position: relative;
}

.content-section li::before {
  content: "🔧"; /* Ikona klucza mechanika */
  position: absolute;
  left: 0;
  color: #ffd700;
}

/* STYLISTYKA FORMULARZA (dostosowanie kolorów) */
.form-group label {
  color: #ffd700;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  background-color: #444444;
  color: #f5f5f5;
  border: 1px solid #666666;
}

/* STYLISTYKA DLA GALERII ZDJĘĆ */
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.gallery-item {
  border: 3px solid #ffd700; /* Żółta ramka */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  opacity: 0.9; /* Lekko ciemniejszy wygląd */
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item img:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* STYLISTYKA DLA NOWEJ SEKCJI 'DLACZEGO MY' */
.feature-item {
  background-color: #444444;
  border: 1px solid #666666;
}

.feature-item h4 {
  color: #ffd700;
}

/* STYLISTYKA DLA SEKCJI ZASIĘG DZIAŁANIA */
.cities-list {
  background-color: #444444;
  border-left: 5px solid #ffd700;
}
.cities-list li {
  color: #ffd700;
}

/* STYLISTYKA DLA SEKCJI FAQ */
.faq-item {
  border: 1px solid #444444;
  background-color: #444444;
}

.faq-item h4 {
  color: #ffd700;
}

.faq-item p {
  border-left: 3px solid #555555;
  color: #cccccc;
}

/* STOPKA */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111111;
  color: #666666;
  margin-top: 40px;
  border-top: 3px solid #ffd700;
}

/* STYLISTYKA DLA PŁYWAJĄCEGO PRZYCISKU */
.floating-call-button {
  /* Pozycjonowanie (jak wcześniej) */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;

  /* Nowy wygląd czarno-żółty */
  background-color: #ffd700;
  color: #111111; /* Bardzo ciemny tekst */
  padding: 18px 30px; /* Nieco większy rozmiar */
  font-size: 1.3em;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6); /* Mocniejszy cień */
}

.floating-call-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

/* Ukrycie przycisku na dużych ekranach (jak wcześniej) */
@media (min-width: 769px) {
  .floating-call-button {
    display: none;
  }
}
/* STYLISTYKA DLA MAPY GOOGLE (aby pasowała do ciemnego tła) */
.map-container {
  margin-top: 30px;
  margin-bottom: 30px;
  border: 4px solid #444444; /* Lekka ramka */
}
/* ====================================================================== */
/* 5. STYLIZACJA WIDŻETU PILNA POMOC 24/7 */
/* ====================================================================== */

.emergency-widget {
  background: #ffd700; /* Złoty/żółty kolor alarmowy */
  color: #1a1a1a;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px; /* Ograniczenie szerokości */
  margin: 20px auto; /* Centrowanie pod nagłówkiem H1 */
  border: 3px solid #000;
  animation: pulse 1.5s infinite; /* Animacja pulsu */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.emergency-title {
  font-size: 1.5em;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #e74c3c; /* Czerwona kropka */
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: blink 1s infinite; /* Animacja mrugania */
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.emergency-text {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 10px;
}

.emergency-call-btn {
  display: block;
  background: #000; /* Czarny przycisk */
  color: #ffd700; /* Żółty tekst */
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: 700;
  transition: background 0.3s;
}

.emergency-call-btn:hover {
  background: #333;
  color: #fff;
}
