/* Help Nearby (Pomoc W Pobliżu) Application Styles */
.pomoc-app {
    min-height: calc(100vh - 180px);
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.pomoc-container {
    max-width: 800px;
    margin: 0 auto;
}

.pomoc-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pomoc-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 1rem;
    animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.pomoc-header h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pomoc-subtitle {
    color: #94a3b8;
    font-size: 1rem;
}

.maps-notice {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid #3b82f6;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.maps-notice i {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.maps-notice p {
    color: #93c5fd;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #10b981;
    font-size: 1.25rem;
}

.category-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
}

.category-btn:last-child {
    margin-bottom: 0;
}

.category-btn i {
    font-size: 1.5rem;
}

.category-btn span {
    flex: 1;
    text-align: left;
}

/* Medical category */
.category-btn.medical {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.category-btn.medical:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

/* Emergency category */
.category-btn.emergency {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.category-btn.emergency:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
}

/* Utility category */
.category-btn.utility {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.category-btn.utility:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.category-btn:active {
    transform: translateX(3px) scale(0.98);
}

/* Responsive */
@media (min-width: 640px) {
    .categories-grid {
        gap: 2.5rem;
    }

    .category-section {
        padding: 2rem;
    }

    .category-btn {
        padding: 1.25rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .pomoc-header h1 {
        font-size: 2.5rem;
    }

    .pomoc-subtitle {
        font-size: 1.125rem;
    }
}