/* === EXPLORE CITIES SECTION STYLES === */

.explore-cities {
  background: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.explore-cities .container {
  position: relative;
  z-index: 1;
}

.explore-cities .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.explore-cities .section-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.explore-cities .section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #64748b;
  font-weight: 500;
}

/* Split-screen layout */
.explore-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.explore-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.explore-item:nth-child(1) { animation-delay: 0.2s; }
.explore-item:nth-child(2) { animation-delay: 0.4s; }

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

.explore-item h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.explore-item p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Phone mockup - kompaktowy */
.phone-mockup {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
  background: rgba(59, 130, 246, 0.06);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.phone-mockup:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

/* Hover effect already defined above */

.phone-screen {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #9ca3af 0%, #6b7280 100%);
  border-radius: 2px;
  z-index: 2;
}

.phone-screen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Usunięto floating elements dla subtelnego stylu */

/* Feature badges - subtelne */
.feature-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  z-index: 3;
}

.explore-item:nth-child(1) .feature-badge {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.explore-item:nth-child(2) .feature-badge {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

/* Responsive design */
@media (max-width: 992px) {
  .explore-cities {
    padding: 3rem 0;
  }

  .explore-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .phone-mockup {
    max-width: 220px;
  }

  .explore-cities .section-header {
    margin-bottom: 2.5rem;
  }

  .explore-cities .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .explore-cities {
    padding: 3rem 0;
  }

  .explore-cities .section-header {
    margin-bottom: 2rem;
  }

  .explore-cities .section-header h2 {
    font-size: 2rem;
  }

  .explore-cities .section-header p {
    font-size: 1rem;
    max-width: 400px;
  }

  .explore-content {
    gap: 2rem;
  }

  .explore-item h3 {
    font-size: 1.5rem;
  }

  .phone-mockup {
    max-width: 200px;
  }

  .phone-mockup:hover {
    transform: none;
  }

  .feature-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}