* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f8ff;
  color: #0a2d59;
  line-height: 1.6;
}

.topbar {
  background: #003d99;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

header {
  background: linear-gradient(135deg, #0066cc, #003d99);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #003d99;
}

.section h3 {
  font-size: 1.3rem;
  color: #0050b3;
  margin-top: 30px;
}

.section p {
  margin-bottom: 10px;
}

.review {
  background: #e9f2ff;
  border-left: 4px solid #0066cc;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.contact a {
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* KAFELKI - cards-row */
.cards-row {
  display: flex;
  gap: 24px;
  margin: 32px auto 0 auto;
  max-width: 900px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 24px 28px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
  /* Prepare for border transition */
  cursor: pointer;
  /* Clearly clickable */
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: #0066cc;
  /* Highlight color on hover */
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #003d99;
}

.card-desc {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #0a2d59;
}

.card-link {
  margin-top: auto;
  background: #0066cc;
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
  display: inline-block;
}

.card-link:hover {
  background: #003d99;
}

@media (max-width: 900px) {
  .cards-row {
    gap: 16px;
  }

  .card {
    min-width: 180px;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .cards-row {
    flex-direction: column;
    gap: 18px;
    max-width: 98vw;
  }

  .card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .topbar {
    font-size: 0.9rem;
    padding: 8px;
  }
}

.main-nav {
  width: 100%;

  padding: 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 61, 153, 0.04);
  margin-bottom: 18px;
}

.main-nav-home {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08em;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 61, 153, 0.07);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  vertical-align: middle;
  border: none;
  outline: none;
}

.main-nav-home:hover,
.main-nav-home:focus {
  background: #003d99;
  color: #ffd700;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
  .main-nav-home {
    font-size: 1em;
    padding: 9px 14px;
    margin: 8px 0;
  }
}

.pomoc-it-body {

  body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f8f6fb;
    color: #222;
    margin: 0;
    padding: 0;
  }

  .topbar {
    background: linear-gradient(90deg, #003d99 0%, #0050b3 100%);
    color: #fff;
    text-align: center;
    padding: 16px 20px 12px 20px;
    font-size: 1.13rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 61, 153, 0.04);
  }

  .topbar a {
    color: #fff;
    font-weight: bold;
    transition: color 0.2s;
  }

  .topbar a:hover {
    color: #e69c23;
  }

  .hero-section {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 61, 153, 0.09);
    margin: 36px auto 32px auto;
    padding: 32px 18px 32px 18px;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
  }

  .hero-section h1 {
    color: #003d99;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .hero-section h1 span {
    color: #e69c23;
  }

  .hero-section p {
    font-size: 1.18rem;
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .cta-btn {
    background: #e69c23;
    color: #fff !important;
    padding: 14px 38px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.13rem;
    box-shadow: 0 2px 8px rgba(230, 156, 35, 0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
    border: none;
    margin-top: 10px;
  }

  .cta-btn:hover {
    background: #d68b12;
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
  }

  .section {
    background: #fff;
    margin: 40px auto 0 auto;
    max-width: 800px;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(0, 61, 153, 0.06);
    padding: 40px 28px 32px 28px;
    position: relative;
    z-index: 1;
  }

  .section h2 {
    color: #003d99;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    border-left: 6px solid #e69c23;
    padding-left: 12px;
    background: linear-gradient(90deg, #f8f6fb 80%, #e3eafc 100%);
    border-radius: 8px;
  }

  .section ul,
  .section ol {
    margin: 0 0 18px 0;
    padding-left: 22px;
    font-size: 1.08rem;
  }

  .section li {
    margin-bottom: 8px;
    line-height: 1.7;
  }

  .section p {
    margin-bottom: 18px;
    font-size: 1.08rem;
  }

  .section a {
    color: #003d99;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
  }

  .section a:hover {
    color: #e69c23;
  }

  .main-nav {
    width: 100%;
    ;
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 61, 153, 0.04);
    margin-bottom: 18px;
  }

  .main-nav-home {
    display: inline-block;
    background: #003d99;
    color: #fff;
    padding: 10px 28px;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08em;
    margin: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 61, 153, 0.07);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    vertical-align: middle;
    border: none;
    outline: none;
  }

  .main-nav-home:hover,
  .main-nav-home:focus {
    background: #e69c23;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
  }

  footer {
    background: #003d99;
    color: #fff;
    text-align: center;
    padding: 28px 10px 18px 10px;
    margin-top: 48px;
    font-size: 1.05rem;
    border-radius: 24px 24px 0 0;
    letter-spacing: 0.5px;
  }

  @media (max-width: 900px) {
    .hero-section {
      gap: 16px;
    }
  }

  @media (max-width: 700px) {
    .hero-section {
      flex-direction: column;
      gap: 18px;
      max-width: 98vw;
      padding: 18px 4vw 18px 4vw;
    }

    .section {
      padding: 24px 8px 18px 8px;
      margin: 24px 6px 0 6px;
    }

    .hero-section h1 {
      font-size: 1.5rem;
    }
  }

}

/* --- NEW REDESIGN STYLES (Header & Hero) --- */

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* New Header */
.new-header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  /* Ensuring consistent font */
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #0d2d53;
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 10px;
  color: #0066cc;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.new-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-nav a {
  text-decoration: none;
  color: #0d2d53;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s;
}

.new-nav a:hover {
  color: #e69500;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  /* Pill shape */
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #e69c23;
  /* Orange-ish gold */
  color: #fff;
}

.btn-primary:hover {
  background: #d68b12;
  transform: translateY(-1px);
}

.btn-dark {
  background: #1a2f45;
  /* Dark navy */
  color: #fff;
}

.btn-dark:hover {
  background: #2c425b;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #e69c23;
  color: #e69c23;
}

.btn-outline:hover {
  background: #e69c23;
  color: #fff;
}


/* New Hero Section */
.new-hero {
  background: #eef7fc;
  /* Light blue background */
  padding: 40px 0;
  /* REDUCED from 80px 0 */
  min-height: auto;
  /* REDUCED from 600px to auto or smaller min-height */
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  /* Image smaller, Text wider */
  gap: 60px;
  align-items: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  /* Slight reduction if needed, but 500 was fine. keeping 500 is ok, but reducing padding helps. */
  object-fit: contain;
  /* Optional: drop shadow for the console */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ... existing styles ... */


.hero-content {
  text-align: left;
}

.hero-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: #1a2f45;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Responsiveness for new elements */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .new-nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-image {
    order: -1;
    /* Image on top */
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .header-actions {
    display: flex;
    /* Show on mobile */
    gap: 10px;
  }

  /* Hide "Znajdź urządzenie" on mobile to save space, keeping only "Zadzwoń" */
  .header-actions .btn-primary {
    display: none;
  }

  .header-actions .btn-dark {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .new-header {
    padding: 10px 0;
  }
}

/* --- NEW SECTIONS STYLES (Pricing, FAQ, Gallery, Map, FAB) --- */

/* 1. PRICING TABLE (Cennik) */
.pricing-section {
  background: #fff;
  padding: 60px 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #0066cc;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f4f8;
}

.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003d99;
  margin-bottom: 5px;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.pricing-service {
  font-weight: 500;
}

.pricing-cost {
  font-weight: 700;
  color: #e69c23;
  background: #fff8e1;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* 2. FAQ SECTION */
.faq-section {
  background: #f8faff;
  padding: 60px 0;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

details.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

details.faq-item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

summary.faq-question {
  padding: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #003d99;
  cursor: pointer;
  list-style: none;
  /* Remove default triangle */
  position: relative;
  padding-right: 50px;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #e69c23;
  font-weight: 300;
  transition: transform 0.2s;
}

details[open] summary.faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  padding: 0 20px 20px 20px;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid #f0f4f8;
  margin-top: -5px;
  padding-top: 15px;
}

/* 3. GALLERY SECTION */
.gallery-section {
  padding: 60px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/3;
  position: relative;
  /* group: hover; removed */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* 4. GOOGLE MAP */
.map-container {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  height: 400px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 5. FLOATING CALL BUTTON (Sticky) */
.floating-call-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #0d2d53;
  /* WhatsApp/Call green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  font-size: 30px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

.floating-call-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}